Searched defs:OverloadCandidate (Results 1 - 1 of 1) sorted by relevance

/external/clang/include/clang/Sema/
H A DOverload.h589 /// OverloadCandidate - A single candidate in an overload set (C++ 13.3).
590 struct OverloadCandidate { struct in namespace:clang
711 SmallVector<OverloadCandidate, 16> Candidates;
714 // Allocator for OverloadCandidate::Conversions. We store the first few
746 typedef SmallVectorImpl<OverloadCandidate>::iterator iterator;
755 OverloadCandidate &addCandidate(unsigned NumConversions = 0) {
756 Candidates.push_back(OverloadCandidate());
757 OverloadCandidate &C = Candidates.back();
793 const OverloadCandidate& Cand1,
794 const OverloadCandidate
[all...]

Completed in 87 milliseconds