Home | History | Annotate | Download | only in AST

Lines Matching refs:Best

347 /// cv-qualifiers on a single parameter, and return the best overload candidate
357 unsigned Best = 0, N = Cands.size();
359 if (Cands[Best].second.compatiblyIncludes(Cands[I].second))
360 Best = I;
363 if (Cands[Best].second.compatiblyIncludes(Cands[I].second))
366 return Cands[Best].first;