Home
last modified time | relevance | path

Searched refs:UnderlyingTy (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/orc/
H A Dbitmask_enum.h95 using UnderlyingTy = std::underlying_type_t<E>;
96 static constexpr UnderlyingTy value =
97 static_cast<UnderlyingTy>(E::ORC_RT_BITMASK_LARGEST_ENUMERATOR);
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DBitmaskEnum.h117 using UnderlyingTy = std::underlying_type_t<E>;
118 static constexpr UnderlyingTy value =
119 static_cast<UnderlyingTy>(E::LLVM_BITMASK_LARGEST_ENUMERATOR);
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h5851 QualType UnderlyingTy;
5854 MacroQualifiedType(QualType UnderlyingTy, QualType CanonTy,
5856 : Type(MacroQualified, CanonTy, UnderlyingTy->getDependence()),
5857 UnderlyingTy(UnderlyingTy), MacroII(MacroII) {
5858 assert(isa<AttributedType>(UnderlyingTy) &&
5864 QualType getUnderlyingType() const { return UnderlyingTy; }
6081 UnaryTransformType(QualType BaseTy, QualType UnderlyingTy, UTTKind UKind,
H A DASTContext.h1889 QualType getMacroQualifiedType(QualType UnderlyingTy,
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclAttr.cpp4719 QualType UnderlyingTy, DiagTy; in CheckAlignasUnderalignment() local
4721 UnderlyingTy = DiagTy = VD->getType(); in CheckAlignasUnderalignment()
4723 UnderlyingTy = DiagTy = Context.getTagDeclType(cast<TagDecl>(D)); in CheckAlignasUnderalignment()
4725 UnderlyingTy = ED->getIntegerType(); in CheckAlignasUnderalignment()
4751 CharUnits NaturalAlign = Context.getTypeAlignInChars(UnderlyingTy); in CheckAlignasUnderalignment()
H A DSemaDecl.cpp9638 const Type *UnderlyingTy = PT->getPointeeOrArrayElementType(); in getOpenCLKernelParameterType() local
9642 return getOpenCLKernelParameterType(S, QualType(UnderlyingTy, 0)); in getOpenCLKernelParameterType()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp5866 ASTContext::getMacroQualifiedType(QualType UnderlyingTy, in getMacroQualifiedType() argument
5868 QualType Canon = UnderlyingTy; in getMacroQualifiedType()
5870 Canon = getCanonicalType(UnderlyingTy); in getMacroQualifiedType()
5873 MacroQualifiedType(UnderlyingTy, Canon, MacroII); in getMacroQualifiedType()