Home | History | Annotate | Download | only in FileCheck

Lines Matching refs:Best

440   // just compare against the regex itself and hope for the best.
493 // Attempt to find the closest/best fuzzy match. Usually an error happens
495 // would like to show the user a best guess at what "should have" matched, to
498 size_t Best = StringRef::npos;
516 if (Quality < BestQuality || Best == StringRef::npos) {
517 Best = i;
525 if (Best && Best != StringRef::npos && BestQuality < 50) {
526 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data() + Best),