Home | History | Annotate | Download | only in Sema

Lines Matching refs:Best

1893   OverloadCandidateSet::iterator Best;
1894 switch (Candidates.BestViableFunction(*this, StartLoc, Best)) {
1897 FunctionDecl *FnDecl = Best->Function;
1899 Best->FoundDecl, Diagnose) == AR_inaccessible)
1925 << Best->Function->isDeleted()
1927 << getDeletedOrUnavailableSuffix(Best->Function)
4296 OverloadCandidateSet::iterator Best;
4297 switch (CandidateSet.BestViableFunction(Self, QuestionLoc, Best)) {
4301 Self.PerformImplicitConversion(LHS.get(), Best->BuiltinTypes.ParamTypes[0],
4302 Best->Conversions[0], Sema::AA_Converting);
4308 Self.PerformImplicitConversion(RHS.get(), Best->BuiltinTypes.ParamTypes[1],
4309 Best->Conversions[1], Sema::AA_Converting);
4313 if (Best->Function)
4314 Self.MarkFunctionReferenced(QuestionLoc, Best->Function);