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

/external/clang/include/clang/Sema/
H A DOverload.h598 /// OverloadCandidate - A single candidate in an overload set (C++ 13.3).
599 struct OverloadCandidate { struct in namespace:clang
739 SmallVector<OverloadCandidate, 16> Candidates;
742 // Allocator for OverloadCandidate::Conversions. We store the first few
769 typedef SmallVector<OverloadCandidate, 16>::iterator iterator;
778 OverloadCandidate &addCandidate(unsigned NumConversions = 0) {
779 Candidates.push_back(OverloadCandidate());
780 OverloadCandidate &C = Candidates.back();
816 const OverloadCandidate& Cand1,
817 const OverloadCandidate
[all...]

Completed in 53 milliseconds