Home
last modified time | relevance | path

Searched refs:UnderlyingType (Results 1 – 22 of 22) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/
H A DPrettyEnumDumper.cpp41 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 DMinimalTypeDumper.cpp356 Enum.UnderlyingType); in visitKnownRecord()
/freebsd-12.1/contrib/llvm/include/llvm/ExecutionEngine/
H A DJITSymbol.h58 using UnderlyingType = uint8_t;
61 enum FlagNames : UnderlyingType {
151 UnderlyingType getRawFlagsValue() const { in getRawFlagsValue()
152 return static_cast<UnderlyingType>(Flags); in getRawFlagsValue()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DODRHash.cpp950 QualType UnderlyingType = T->getDecl()->getUnderlyingType(); in VisitTypedefType() local
951 VisitQualifiers(UnderlyingType.getQualifiers()); in VisitTypedefType()
954 dyn_cast<TypedefType>(UnderlyingType.getTypePtr())) { in VisitTypedefType()
955 UnderlyingType = Underlying->getDecl()->getUnderlyingType(); in VisitTypedefType()
959 dyn_cast<ElaboratedType>(UnderlyingType.getTypePtr())) { in VisitTypedefType()
960 UnderlyingType = Underlying->getNamedType(); in VisitTypedefType()
966 AddType(UnderlyingType.getTypePtr()); in VisitTypedefType()
H A DType.cpp3116 E(E), UnderlyingType(underlyingType) {} in DecltypeType()
3136 QualType UnderlyingType, in UnaryTransformType() argument
3143 BaseType(BaseType), UnderlyingType(UnderlyingType), UKind(UKind) {} in UnaryTransformType()
H A DASTContext.cpp4789 QualType ASTContext::getDecltypeType(Expr *e, QualType UnderlyingType) const { in getDecltypeType()
4809 DecltypeType(e, UnderlyingType, QualType((DecltypeType *)Canon, 0)); in getDecltypeType()
4812 DecltypeType(e, UnderlyingType, getCanonicalType(UnderlyingType)); in getDecltypeType()
4821 QualType UnderlyingType, in getUnaryTransformType() argument
4846 QualType CanonType = getCanonicalType(UnderlyingType); in getUnaryTransformType()
4848 UnderlyingType, Kind, in getUnaryTransformType()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeEnum.cpp300 const auto UnderlyingType = in getLength() local
302 return UnderlyingType ? UnderlyingType->getLength() : 0; in getLength()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h530 StringRef Name, StringRef UniqueName, TypeIndex UnderlyingType) in EnumRecord() argument
533 UnderlyingType(UnderlyingType) {} in EnumRecord()
535 TypeIndex getUnderlyingType() const { return UnderlyingType; } in getUnderlyingType()
537 TypeIndex UnderlyingType; variable
/freebsd-12.1/contrib/llvm/include/llvm/ExecutionEngine/Orc/
H A DOrcRemoteTargetRPCAPI.h94 JITSymbolFlags::UnderlyingType JITFlags; in deserialize()
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DDIBuilder.h509 DIType *UnderlyingType, StringRef UniqueIdentifier = "", bool IsScoped = false);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.cpp540 return GetIntegralTypeInfo(er.UnderlyingType, tpi); in GetIntegralTypeInfo()
H A DPdbUtil.cpp734 return GetSizeOfType({record.UnderlyingType}, tpi); in GetSizeOfType()
H A DPdbAstBuilder.cpp1096 clang::QualType underlying_type = GetOrCreateType(er.UnderlyingType); in CreateEnumType()
H A DSymbolFileNativePDB.cpp574 TypeSP underlying_type = GetOrCreateType(er.UnderlyingType); in CreateTagType()
/freebsd-12.1/contrib/llvm/lib/IR/
H A DDIBuilder.cpp507 DIType *UnderlyingType, StringRef UniqueIdentifier, bool IsScoped) { in createEnumerationType() argument
510 getNonCompileUnitScope(Scope), UnderlyingType, SizeInBits, AlignInBits, 0, in createEnumerationType()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordMapping.cpp245 error(IO.mapInteger(Record.UnderlyingType)); in visitKnownRecord()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DType.h4248 QualType UnderlyingType;
4257 QualType getUnderlyingType() const { return UnderlyingType; }
4300 QualType UnderlyingType;
4312 QualType desugar() const { return UnderlyingType; }
4314 QualType getUnderlyingType() const { return UnderlyingType; }
H A DASTContext.h1515 QualType getDecltypeType(Expr *e, QualType UnderlyingType) const;
1518 QualType getUnaryTransformType(QualType BaseType, QualType UnderlyingType,
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp540 IO.mapRequired("UnderlyingType", Record.UnderlyingType); in map()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp6104 QualType UnderlyingType = readType(*Loc.F, Record, Idx); in readTypeRecord() local
6105 return Context.getTypeOfType(UnderlyingType); in readTypeRecord()
6109 QualType UnderlyingType = readType(*Loc.F, Record, Idx); in readTypeRecord() local
6110 return Context.getDecltypeType(ReadExpr(*Loc.F), UnderlyingType); in readTypeRecord()
6115 QualType UnderlyingType = readType(*Loc.F, Record, Idx); in readTypeRecord() local
6117 return Context.getUnaryTransformType(BaseType, UnderlyingType, UKind); in readTypeRecord()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDecl.cpp14029 bool ScopedEnumUsesClassTag, TypeResult UnderlyingType, in ActOnTag() argument
14087 bool IsFixed = !UnderlyingType.isUnset() || ScopedEnum; in ActOnTag()
14090 if (UnderlyingType.isInvalid() || (!UnderlyingType.get() && ScopedEnum)) { in ActOnTag()
14094 } else if (UnderlyingType.get()) { in ActOnTag()
14098 GetTypeFromParser(UnderlyingType.get(), &TI); in ActOnTag()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h2240 bool ScopedEnumUsesClassTag, TypeResult UnderlyingType,