Home | History | Annotate | Download | only in AST

Lines Matching refs:Cands

351   const SmallVectorImpl<std::pair<CXXMethodDecl *, Qualifiers> > &Cands) {
352 if (Cands.empty())
354 if (Cands.size() == 1)
355 return Cands[0].first;
357 unsigned Best = 0, N = Cands.size();
359 if (Cands[Best].second.compatiblyIncludes(Cands[I].second))
363 if (Cands[Best].second.compatiblyIncludes(Cands[I].second))
366 return Cands[Best].first;