Home | History | Annotate | Download | only in Sema

Lines Matching refs:Candidate

3872     // Sort the overload candidate set by placing the best overloads first.
3880 for (auto &Candidate : CandidateSet)
3881 if (Candidate.Viable)
3882 Results.push_back(ResultCandidate(Candidate.Function));
3896 for (auto &Candidate : Candidates) {
3897 if (auto FType = Candidate.getFunctionType())
3950 // Build an overload candidate set based on the functions we find.