Searched refs:NumConversions (Results 1 - 2 of 2) sorted by relevance

/external/clang/include/clang/Sema/
H A DOverload.h624 /// fixed size array with NumConversions elements. The memory is owned by
631 /// NumConversions - The number of elements in the Conversions array.
632 unsigned NumConversions; member in struct:clang::OverloadCandidate
715 for (unsigned i = 0, e = NumConversions; i != e; ++i) {
776 /// \brief Add a new candidate with NumConversions conversion sequence slots
778 OverloadCandidate &addCandidate(unsigned NumConversions = 0) {
784 if (NumConversions + NumInlineSequences <= 16) {
788 NumInlineSequences += NumConversions;
792 .Allocate<ImplicitConversionSequence>(NumConversions);
796 for (unsigned i = 0; i != NumConversions;
[all...]
/external/clang/lib/Sema/
H A DSemaOverload.cpp739 for (unsigned ii = 0, ie = i->NumConversions; ii != ie; ++ii)
7726 unsigned NumArgs = Cand1.NumConversions;
7727 assert(Cand2.NumConversions == NumArgs && "Overload candidate mismatch");
8469 for (unsigned N = Cand->NumConversions; I != N; ++I)
8521 assert(Cand->NumConversions <= 2 && "builtin operator is not binary");
8526 if (Cand->NumConversions == 1) {
8539 unsigned NoOperands = Cand->NumConversions;
8643 assert(L->NumConversions == R->NumConversions);
8647 for (unsigned E = L->NumConversions;
[all...]

Completed in 32 milliseconds