Home | History | Annotate | Download | only in Sema

Lines Matching defs:Underlying

872 // top of the underlying declaration.
1749 // A prvalue of an unscoped enumeration type whose underlying type is not
1761 // A prvalue of an unscoped enumeration type whose underlying type is fixed
1762 // can be converted to a prvalue of its underlying type. Moreover, if
1763 // integral promotion can be applied to its underlying type, a prvalue of an
1764 // unscoped enumeration type whose underlying type is fixed can also be
1765 // converted to a prvalue of the promoted underlying type.
1772 // We can perform an integral promotion to the underlying type of the enum,
1775 QualType Underlying = FromEnumType->getDecl()->getIntegerType();
1776 return Context.hasSameUnqualifiedType(Underlying, ToType) ||
1777 IsIntegralPromotion(From, Underlying, ToType);
1790 // represent all the values of its underlying type: int, unsigned int,
1793 // underlying type, an rvalue a prvalue of type char16_t, char32_t,
1794 // or wchar_t can be converted to an rvalue a prvalue of its underlying
1900 /// where the conversion between the underlying real types is a
4367 // underlying type of the reference according to
4369 // to copy-initializing a temporary of the underlying type with
9159 // Look through any using declarations to find the underlying function.