HomeSort by relevance Sort by last modified time
    Searched refs:NumConversions (Results 1 - 2 of 2) sorted by null

  /external/clang/include/clang/Sema/
Overload.h 615 /// fixed size array with NumConversions elements. The memory is owned by
622 /// NumConversions - The number of elements in the Conversions array.
623 unsigned NumConversions;
663 for (unsigned i = 0, e = NumConversions; i != e; ++i) {
753 /// \brief Add a new candidate with NumConversions conversion sequence slots
755 OverloadCandidate &addCandidate(unsigned NumConversions = 0) {
761 if (NumConversions + NumInlineSequences <= 16) {
765 NumInlineSequences += NumConversions;
769 .Allocate<ImplicitConversionSequence>(NumConversions);
773 for (unsigned i = 0; i != NumConversions; ++i
    [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp 788 for (unsigned ii = 0, ie = i->NumConversions; ii != ie; ++ii)
    [all...]

Completed in 45 milliseconds