Home
last modified time | relevance | path

Searched refs:ModifiedType (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h134 ModifierRecord(TypeIndex ModifiedType, ModifierOptions Modifiers) in ModifierRecord() argument
135 : TypeRecord(TypeRecordKind::Modifier), ModifiedType(ModifiedType), in ModifierRecord()
138 TypeIndex getModifiedType() const { return ModifiedType; } in getModifiedType()
141 TypeIndex ModifiedType; variable
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DSymbolCache.cpp135 if (Record.ModifiedType.isSimple()) in createSymbolForModifiedType()
136 return createSimpleType(Record.ModifiedType, Record.Modifiers); in createSymbolForModifiedType()
139 SymIndexId UnmodifiedId = findSymbolByTypeIndex(Record.ModifiedType); in createSymbolForModifiedType()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.cpp89 return GetIntegralTypeInfo(mfr.ModifiedType, tpi); in GetIntegralTypeInfo()
H A DSymbolFileNativePDB.cpp547 if (mr.ModifiedType.isSimple()) in CreateModifierType()
548 name = std::string(GetSimpleTypeName(mr.ModifiedType.getSimpleKind())); in CreateModifierType()
550 name = computeTypeName(stream.typeCollection(), mr.ModifiedType); in CreateModifierType()
552 lldb::TypeSP modified_type = GetOrCreateType(mr.ModifiedType); in CreateModifierType()
H A DPdbUtil.cpp596 return mr.ModifiedType; in LookThroughModifierRecord()
H A DPdbAstBuilder.cpp590 clang::QualType unmodified_type = GetOrCreateType(modifier.ModifiedType); in CreateModifierType()
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp451 P.formatLine("referent = {0}, modifiers = {1}", Mod.ModifiedType, in visitKnownRecord()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordMapping.cpp318 error(IO.mapInteger(Record.ModifiedType, "ModifiedType")); in visitKnownRecord()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp401 IO.mapRequired("ModifiedType", Record.ModifiedType); in map()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp2276 LVElement *ModifiedType = getElement(StreamTPI, Mod.getModifiedType()); in visitKnownRecord() local
2322 LastLink->setType(ModifiedType); in visitKnownRecord()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h6197 QualType ModifiedType;
6218 QualType getModifiedType() const { return ModifiedType; }
6261 Profile(ID, getAttrKind(), ModifiedType, EquivalentType, Attribute);
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp287 QualType getAttributedType(Attr *A, QualType ModifiedType, in getAttributedType() argument
290 sema.Context.getAttributedType(A, ModifiedType, EquivType); in getAttributedType()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DType.cpp4284 ModifiedType(modified), EquivalentType(equivalent) { in AttributedType()