Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransGCAttrs.cpp114 Attr.ModifiedType = TL.getModifiedLoc().getType(); in handleAttr()
185 if (Attr.ModifiedType.isNull()) in errorForGCAttrsOnNonObjC()
187 if (!Attr.ModifiedType->isObjCRetainableType()) { in errorForGCAttrsOnNonObjC()
201 if (Attr.ModifiedType.isNull() || in checkWeakGCAttrs()
202 !Attr.ModifiedType->isObjCRetainableType()) in checkWeakGCAttrs()
204 if (!canApplyWeak(MigrateCtx.Pass.Ctx, Attr.ModifiedType, in checkWeakGCAttrs()
339 Attr.ModifiedType.dump(); in dumpGCAttrs()
H A DTransforms.h89 QualType ModifiedType; member
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h133 ModifierRecord(TypeIndex ModifiedType, ModifierOptions Modifiers) in ModifierRecord() argument
134 : TypeRecord(TypeRecordKind::Modifier), ModifiedType(ModifiedType), in ModifierRecord()
137 TypeIndex getModifiedType() const { return ModifiedType; } in getModifiedType()
140 TypeIndex ModifiedType; variable
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DSymbolCache.cpp130 if (Record.ModifiedType.isSimple()) in createSymbolForModifiedType()
131 return createSimpleType(Record.ModifiedType, Record.Modifiers); in createSymbolForModifiedType()
134 SymIndexId UnmodifiedId = findSymbolByTypeIndex(Record.ModifiedType); in createSymbolForModifiedType()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.cpp88 return GetIntegralTypeInfo(mfr.ModifiedType, tpi); in GetIntegralTypeInfo()
H A DSymbolFileNativePDB.cpp434 if (mr.ModifiedType.isSimple()) in CreateModifierType()
435 name = std::string(GetSimpleTypeName(mr.ModifiedType.getSimpleKind())); in CreateModifierType()
437 name = computeTypeName(stream.typeCollection(), mr.ModifiedType); in CreateModifierType()
439 lldb::TypeSP modified_type = GetOrCreateType(mr.ModifiedType); in CreateModifierType()
H A DPdbUtil.cpp449 return mr.ModifiedType; in LookThroughModifierRecord()
H A DPdbAstBuilder.cpp754 clang::QualType unmodified_type = GetOrCreateType(modifier.ModifiedType); in CreateModifierType()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp446 P.formatLine("referent = {0}, modifiers = {1}", Mod.ModifiedType, in visitKnownRecord()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordMapping.cpp298 error(IO.mapInteger(Record.ModifiedType, "ModifiedType")); in visitKnownRecord()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DType.h4677 QualType ModifiedType;
4683 ModifiedType(modified), EquivalentType(equivalent) {
4692 QualType getModifiedType() const { return ModifiedType; }
4752 Profile(ID, getAttrKind(), ModifiedType, EquivalentType);
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp400 IO.mapRequired("ModifiedType", Record.ModifiedType); in map()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp259 QualType getAttributedType(Attr *A, QualType ModifiedType, in getAttributedType() argument
262 sema.Context.getAttributedType(A->getKind(), ModifiedType, EquivType); in getAttributedType()