Home
last modified time | relevance | path

Searched refs:modifiedType (Results 1 – 10 of 10) sorted by relevance

/external/llvm-project/clang/include/clang/AST/
DTypeProperties.td590 def : Property<"modifiedType", QualType> {
601 return ctx.getAttributedType(attribute, modifiedType, equivalentType);
DASTContext.h1442 QualType modifiedType,
/external/clang/lib/AST/
DType.cpp927 QualType modifiedType = recurse(T->getModifiedType()); in TRIVIAL_TYPE_CLASS() local
928 if (modifiedType.isNull()) in TRIVIAL_TYPE_CLASS()
935 if (modifiedType.getAsOpaquePtr() in TRIVIAL_TYPE_CLASS()
941 return Ctx.getAttributedType(T->getAttrKind(), modifiedType, in TRIVIAL_TYPE_CLASS()
DASTContext.cpp3260 QualType modifiedType, in getAttributedType() argument
3263 AttributedType::Profile(id, attrKind, modifiedType, equivalentType); in getAttributedType()
3271 AttributedType(canon, attrKind, modifiedType, equivalentType); in getAttributedType()
/external/llvm-project/clang/lib/AST/
DType.cpp1136 QualType modifiedType = recurse(T->getModifiedType()); in SUGARED_TYPE_CLASS() local
1137 if (modifiedType.isNull()) in SUGARED_TYPE_CLASS()
1144 if (modifiedType.getAsOpaquePtr() in SUGARED_TYPE_CLASS()
1150 return Ctx.getAttributedType(T->getAttrKind(), modifiedType, in SUGARED_TYPE_CLASS()
DASTContext.cpp4493 QualType modifiedType, in getAttributedType() argument
4496 AttributedType::Profile(id, attrKind, modifiedType, equivalentType); in getAttributedType()
4504 AttributedType(canon, attrKind, modifiedType, equivalentType); in getAttributedType()
/external/clang/include/clang/AST/
DASTContext.h1225 QualType modifiedType,
/external/clang/lib/Sema/
DTreeTransform.h5730 QualType modifiedType = getDerived().TransformType(TLB, TL.getModifiedLoc()); in TransformAttributedType() local
5731 if (modifiedType.isNull()) in TransformAttributedType()
5738 modifiedType != oldType->getModifiedType()) { in TransformAttributedType()
5749 if (!modifiedType->canHaveNullability()) { in TransformAttributedType()
5751 << DiagNullabilityKind(*nullability, false) << modifiedType; in TransformAttributedType()
5757 modifiedType, in TransformAttributedType()
/external/llvm-project/clang/lib/Sema/
DTreeTransform.h6652 QualType modifiedType = getDerived().TransformType(TLB, TL.getModifiedLoc()); in TransformAttributedType() local
6653 if (modifiedType.isNull()) in TransformAttributedType()
6666 modifiedType != oldType->getModifiedType()) { in TransformAttributedType()
6677 if (!modifiedType->canHaveNullability()) { in TransformAttributedType()
6680 << DiagNullabilityKind(*nullability, false) << modifiedType; in TransformAttributedType()
6686 modifiedType, in TransformAttributedType()
/external/clang/lib/Serialization/
DASTReader.cpp5488 QualType modifiedType = readType(*Loc.F, Record, Idx); in readTypeRecord() local
5491 return Context.getAttributedType(kind, modifiedType, equivalentType); in readTypeRecord()