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.cpp547 SubCommand *NearestMatch = nullptr; in LookupSubCommand() local
557 if (!NearestMatch && S->getName().edit_distance(Name) < 2) in LookupSubCommand()
558 NearestMatch = S; in LookupSubCommand()
561 if (NearestMatch) in LookupSubCommand()
562 NearestString = NearestMatch->getName(); in LookupSubCommand()