Lines Matching defs:Best
100 InputIt Best = Last;
105 if (Best == Last || BetterThan(*I, *Best))
106 Best = I;
112 return Best;
407 auto Best = Sorted.end();
412 (Best == Sorted.end() || R1.Addend < Best->R.Addend ||
413 (!Best->Matched && R1.Addend == Best->R.Addend)))
414 Best = J;
416 if (Best != Sorted.end() && R.Addend == Best->R.Addend)
417 Best->Matched = true;
421 Sorted.splice(Best, Sorted, I);