Lines Matching refs:Best
1704 OverloadCandidateSet::iterator Best; in FindAllocationOverload() local
1705 switch (Candidates.BestViableFunction(*this, StartLoc, Best)) { in FindAllocationOverload()
1708 FunctionDecl *FnDecl = Best->Function; in FindAllocationOverload()
1733 Best->FoundDecl, Diagnose) == AR_inaccessible) in FindAllocationOverload()
1760 << Best->Function->isDeleted() in FindAllocationOverload()
1762 << getDeletedOrUnavailableSuffix(Best->Function) in FindAllocationOverload()
4033 OverloadCandidateSet::iterator Best; in FindConditionalOverload() local
4034 switch (CandidateSet.BestViableFunction(Self, QuestionLoc, Best)) { in FindConditionalOverload()
4038 Self.PerformImplicitConversion(LHS.get(), Best->BuiltinTypes.ParamTypes[0], in FindConditionalOverload()
4039 Best->Conversions[0], Sema::AA_Converting); in FindConditionalOverload()
4045 Self.PerformImplicitConversion(RHS.get(), Best->BuiltinTypes.ParamTypes[1], in FindConditionalOverload()
4046 Best->Conversions[1], Sema::AA_Converting); in FindConditionalOverload()
4050 if (Best->Function) in FindConditionalOverload()
4051 Self.MarkFunctionReferenced(QuestionLoc, Best->Function); in FindConditionalOverload()