Home | History | Annotate | Download | only in Sema

Lines Matching refs:Best

1788   OverloadCandidateSet::iterator Best;
1789 switch (Candidates.BestViableFunction(*this, StartLoc, Best)) {
1792 FunctionDecl *FnDecl = Best->Function;
1817 Best->FoundDecl, Diagnose) == AR_inaccessible)
1842 << Best->Function->isDeleted()
1844 << getDeletedOrUnavailableSuffix(Best->Function)
4186 OverloadCandidateSet::iterator Best;
4187 switch (CandidateSet.BestViableFunction(Self, QuestionLoc, Best)) {
4191 Self.PerformImplicitConversion(LHS.get(), Best->BuiltinTypes.ParamTypes[0],
4192 Best->Conversions[0], Sema::AA_Converting);
4198 Self.PerformImplicitConversion(RHS.get(), Best->BuiltinTypes.ParamTypes[1],
4199 Best->Conversions[1], Sema::AA_Converting);
4203 if (Best->Function)
4204 Self.MarkFunctionReferenced(QuestionLoc, Best->Function);