Home | History | Annotate | Download | only in Sema

Lines Matching refs:Best

1683   OverloadCandidateSet::iterator Best;
1684 switch (Candidates.BestViableFunction(*this, StartLoc, Best)) {
1687 FunctionDecl *FnDecl = Best->Function;
1712 Best->FoundDecl, Diagnose) == AR_inaccessible)
1739 << Best->Function->isDeleted()
1741 << getDeletedOrUnavailableSuffix(Best->Function)
3957 OverloadCandidateSet::iterator Best;
3958 switch (CandidateSet.BestViableFunction(Self, QuestionLoc, Best)) {
3962 Self.PerformImplicitConversion(LHS.get(), Best->BuiltinTypes.ParamTypes[0],
3963 Best->Conversions[0], Sema::AA_Converting);
3969 Self.PerformImplicitConversion(RHS.get(), Best->BuiltinTypes.ParamTypes[1],
3970 Best->Conversions[1], Sema::AA_Converting);
3974 if (Best->Function)
3975 Self.MarkFunctionReferenced(QuestionLoc, Best->Function);