OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BestDistance
(Results
1 - 2
of
2
) sorted by null
/external/clang/lib/Basic/
DiagnosticIDs.cpp
568
unsigned
BestDistance
= Group.size() + 1; // Sanity threshold.
574
unsigned Distance = O.getName().edit_distance(Group, true,
BestDistance
);
575
if (Distance >
BestDistance
)
583
if (Distance ==
BestDistance
) {
586
} else if (Distance <
BestDistance
) {
589
BestDistance
= Distance;
/external/llvm/lib/Support/
CommandLine.cpp
294
unsigned
BestDistance
= 0;
308
Flag, /*AllowReplacements=*/true, /*MaxEditDistance=*/
BestDistance
);
309
if (!Best || Distance <
BestDistance
) {
311
BestDistance
= Distance;
[
all
...]
Completed in 205 milliseconds