Home
last modified time | relevance | path

Searched refs:NearestMatch (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DCommandLine.cpp530 SubCommand *NearestMatch = nullptr; in LookupSubCommand() local
540 if (!NearestMatch && S->getName().edit_distance(Name) < 2) in LookupSubCommand()
541 NearestMatch = S; in LookupSubCommand()
544 if (NearestMatch) in LookupSubCommand()
545 NearestString = NearestMatch->getName(); in LookupSubCommand()