| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | PrettyEnumDumper.cpp | 41 auto UnderlyingType = Symbol.getUnderlyingType(); in start() local 42 if (!UnderlyingType) in start() 44 if (UnderlyingType->getBuiltinType() != PDB_BuiltinType::Int || in start() 45 UnderlyingType->getLength() != 4) { in start() 48 Dumper.start(*UnderlyingType); in start()
|
| H A D | MinimalTypeDumper.cpp | 366 Enum.UnderlyingType); in visitKnownRecord()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/orc/ |
| H A D | executor_symbol_def.h | 28 using UnderlyingType = uint8_t; 32 enum FlagNames : UnderlyingType { 58 UnderlyingType getRawFlagsValue() const { in getRawFlagsValue() 59 return static_cast<UnderlyingType>(Flags); in getRawFlagsValue() 96 SPSTuple<JITSymbolFlags::UnderlyingType, JITSymbolFlags::TargetFlagsType>; 113 JITSymbolFlags::UnderlyingType RawFlags; in deserialize()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | WithCache.h | 30 using UnderlyingType = std::remove_pointer_t<Arg>; variable 36 using PointerType = conditionally_const_t<UnderlyingType *, IsConst>; 37 using ReferenceType = conditionally_const_t<UnderlyingType &, IsConst>;
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/ |
| H A D | JITSymbol.h | 76 using UnderlyingType = uint8_t; 79 enum FlagNames : UnderlyingType { 167 UnderlyingType getRawFlagsValue() const { in getRawFlagsValue() 168 return static_cast<UnderlyingType>(Flags); in getRawFlagsValue()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/ |
| H A D | ExecutorSymbolDef.h | 55 SPSTuple<JITSymbolFlags::UnderlyingType, JITSymbolFlags::TargetFlagsType>; 72 JITSymbolFlags::UnderlyingType RawFlags; in deserialize()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | NativeTypeEnum.cpp | 304 const auto UnderlyingType = in getLength() local 306 return UnderlyingType ? UnderlyingType->getLength() : 0; in getLength()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | RangedConstraintManager.h | 109 using UnderlyingType = const ContainerType *; variable 110 UnderlyingType Impl; 382 /* implicit */ RangeSet(UnderlyingType Ptr) : Impl(Ptr) {} in RangeSet()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | TypeRecord.h | 524 StringRef Name, StringRef UniqueName, TypeIndex UnderlyingType) in EnumRecord() argument 527 UnderlyingType(UnderlyingType) {} in EnumRecord() 529 TypeIndex getUnderlyingType() const { return UnderlyingType; } in getUnderlyingType() 531 TypeIndex UnderlyingType; variable
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/ExtractAPI/ |
| H A D | API.h | 1102 SymbolReference UnderlyingType; member 1107 DeclarationFragments SubHeading, SymbolReference UnderlyingType, in TypedefRecord() 1112 UnderlyingType(UnderlyingType) {} in TypedefRecord() 1507 SymbolReference UnderlyingType, bool IsFromSystemHeader);
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | TypePrinter.cpp | 214 const Type *UnderlyingType = T; in canPrefixQualifiers() local 216 UnderlyingType = AT->desugar().getTypePtr(); in canPrefixQualifiers() 218 UnderlyingType = Subst->getReplacementType().getTypePtr(); in canPrefixQualifiers() 219 Type::TypeClass TC = UnderlyingType->getTypeClass(); in canPrefixQualifiers() 266 cast<ArrayType>(UnderlyingType)->getElementType().getTypePtr(), in canPrefixQualifiers() 295 const auto *AttrTy = cast<AttributedType>(UnderlyingType); in canPrefixQualifiers()
|
| H A D | ODRHash.cpp | 881 QualType UnderlyingType = D->getUnderlyingType(); in RemoveTypedef() local 883 if (UnderlyingType.hasLocalQualifiers()) { in RemoveTypedef() 887 const auto *ElaboratedT = dyn_cast<ElaboratedType>(UnderlyingType); in RemoveTypedef()
|
| H A D | CommentSema.cpp | 907 auto UnderlyingType = ThisTypedefDecl->getUnderlyingType(); in isClassOrStructOrTagTypedefDecl() local 908 if (auto ThisElaboratedType = dyn_cast<ElaboratedType>(UnderlyingType)) { in isClassOrStructOrTagTypedefDecl()
|
| H A D | Type.cpp | 3797 E(E), UnderlyingType(underlyingType) {} in DecltypeType() 3808 DependentDecltypeType::DependentDecltypeType(Expr *E, QualType UnderlyingType) in DependentDecltypeType() argument 3809 : DecltypeType(E, UnderlyingType) {} in DependentDecltypeType() 3817 QualType UnderlyingType, UTTKind UKind, in UnaryTransformType() argument 3820 BaseType(BaseType), UnderlyingType(UnderlyingType), UKind(UKind) {} in UnaryTransformType()
|
| H A D | ASTContext.cpp | 5678 QualType ASTContext::getDecltypeType(Expr *e, QualType UnderlyingType) const { in getDecltypeType() 5699 DecltypeType(e, UnderlyingType, QualType((DecltypeType *)Canon, 0)); in getDecltypeType() 5702 DecltypeType(e, UnderlyingType, getCanonicalType(UnderlyingType)); in getDecltypeType() 5711 QualType UnderlyingType, in getUnaryTransformType() argument 5734 QualType CanonType = getCanonicalType(UnderlyingType); in getUnaryTransformType() 5736 UnaryTransformType(BaseType, UnderlyingType, Kind, CanonType); in getUnaryTransformType()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/ExtractAPI/Serialization/ |
| H A D | SymbolGraphSerializer.cpp | 1214 bool ShouldDrop = Record.UnderlyingType.Name.empty(); in visitTypedefRecord() 1217 ShouldDrop |= (Record.UnderlyingType.Name == Record.Name); in visitTypedefRecord() 1225 (*Typedef)["type"] = Record.UnderlyingType.USR; in visitTypedefRecord()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | DWARFLocationExpression.cpp | 99 return GetIntegralTypeInfo(er.UnderlyingType, tpi); in GetIntegralTypeInfo()
|
| H A D | PdbUtil.cpp | 1099 return GetSizeOfType({record.UnderlyingType}, tpi); in GetSizeOfType()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/ExtractAPI/ |
| H A D | API.cpp | 500 SymbolReference UnderlyingType, bool IsFromSystemHeader) { in addTypedef() argument 503 SubHeading, UnderlyingType, IsFromSystemHeader); in addTypedef()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | DIBuilder.h | 590 DIType *UnderlyingType, unsigned RunTimeLang = 0,
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | DIBuilder.cpp | 542 DIType *UnderlyingType, unsigned RunTimeLang, in createEnumerationType() argument 546 getNonCompileUnitScope(Scope), UnderlyingType, SizeInBits, AlignInBits, 0, in createEnumerationType()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Type.h | 4900 QualType UnderlyingType; 4909 QualType getUnderlyingType() const { return UnderlyingType; } 4951 QualType UnderlyingType; 4963 QualType desugar() const { return UnderlyingType; } 4965 QualType getUnderlyingType() const { return UnderlyingType; }
|
| H A D | ASTContext.h | 1714 QualType getDecltypeType(Expr *e, QualType UnderlyingType) const; 1717 QualType getUnaryTransformType(QualType BaseType, QualType UnderlyingType,
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| H A D | TypeRecordMapping.cpp | 480 error(IO.mapInteger(Record.UnderlyingType, "UnderlyingType")); in visitKnownRecord()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | CodeViewYAMLTypes.cpp | 547 IO.mapRequired("UnderlyingType", Record.UnderlyingType); in map()
|