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 624 /// fixed size array with NumConversions elements. The memory is owned by
631 /// NumConversions - The number of elements in the Conversions array.
632 unsigned NumConversions;
702 for (unsigned i = 0, e = NumConversions; i != e; ++i) {
745 for (unsigned ii = 0, ie = i->NumConversions; ii != ie; ++ii)
767 /// \brief Add a new candidate with NumConversions conversion sequence slots
769 OverloadCandidate &addCandidate(unsigned NumConversions = 0) {
775 if (NumConversions + NumInlineSequences <= 16) {
779 NumInlineSequences += NumConversions;
783 .Allocate<ImplicitConversionSequence>(NumConversions);
    [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp 711 for (unsigned ii = 0, ie = i->NumConversions; ii != ie; ++ii)
    [all...]

Completed in 30 milliseconds