Home | History | Annotate | Download | only in Sema

Lines Matching refs:Underlying

881 // top of the underlying declaration.
1762 // A prvalue of an unscoped enumeration type whose underlying type is not
1774 // A prvalue of an unscoped enumeration type whose underlying type is fixed
1775 // can be converted to a prvalue of its underlying type. Moreover, if
1776 // integral promotion can be applied to its underlying type, a prvalue of an
1777 // unscoped enumeration type whose underlying type is fixed can also be
1778 // converted to a prvalue of the promoted underlying type.
1785 // We can perform an integral promotion to the underlying type of the enum,
1788 QualType Underlying = FromEnumType->getDecl()->getIntegerType();
1789 return Context.hasSameUnqualifiedType(Underlying, ToType) ||
1790 IsIntegralPromotion(From, Underlying, ToType);
1803 // represent all the values of its underlying type: int, unsigned int,
1806 // underlying type, an rvalue a prvalue of type char16_t, char32_t,
1807 // or wchar_t can be converted to an rvalue a prvalue of its underlying
1913 /// where the conversion between the underlying real types is a
4419 // underlying type of the reference according to
4421 // to copy-initializing a temporary of the underlying type with
9821 // Look through any using declarations to find the underlying function.