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.h112 using UnderlyingTy = std::underlying_type_t<E>;
113 static constexpr UnderlyingTy value =
114 static_cast<UnderlyingTy>(E::LLVM_BITMASK_LARGEST_ENUMERATOR);
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h4785 QualType UnderlyingTy;
4788 MacroQualifiedType(QualType UnderlyingTy, QualType CanonTy,
4790 : Type(MacroQualified, CanonTy, UnderlyingTy->getDependence()),
4791 UnderlyingTy(UnderlyingTy), MacroII(MacroII) {
4792 assert(isa<AttributedType>(UnderlyingTy) &&
4798 QualType getUnderlyingType() const { return UnderlyingTy; }
4958 UnaryTransformType(QualType BaseTy, QualType UnderlyingTy, UTTKind UKind,
H A DASTContext.h1641 QualType getMacroQualifiedType(QualType UnderlyingTy,
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclAttr.cpp4618 QualType UnderlyingTy, DiagTy; in CheckAlignasUnderalignment() local
4620 UnderlyingTy = DiagTy = VD->getType(); in CheckAlignasUnderalignment()
4622 UnderlyingTy = DiagTy = Context.getTagDeclType(cast<TagDecl>(D)); in CheckAlignasUnderalignment()
4624 UnderlyingTy = ED->getIntegerType(); in CheckAlignasUnderalignment()
4650 CharUnits NaturalAlign = Context.getTypeAlignInChars(UnderlyingTy); in CheckAlignasUnderalignment()
H A DSemaDecl.cpp9565 const Type *UnderlyingTy = PT->getPointeeOrArrayElementType(); in getOpenCLKernelParameterType() local
9569 return getOpenCLKernelParameterType(S, QualType(UnderlyingTy, 0)); in getOpenCLKernelParameterType()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp5068 ASTContext::getMacroQualifiedType(QualType UnderlyingTy, in getMacroQualifiedType() argument
5070 QualType Canon = UnderlyingTy; in getMacroQualifiedType()
5072 Canon = getCanonicalType(UnderlyingTy); in getMacroQualifiedType()
5075 MacroQualifiedType(UnderlyingTy, Canon, MacroII); in getMacroQualifiedType()