Searched refs:underlyingType (Results 1 – 5 of 5) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | TypeProperties.td | 393 def : Property<"underlyingType", QualType> { 398 return ctx.getTypeOfType(underlyingType); 403 def : Property<"underlyingType", QualType> { 411 return ctx.getDecltypeType(expression, underlyingType); 419 def : Property<"underlyingType", QualType> { 581 def : Property<"underlyingType", QualType> { 636 def : Property<"underlyingType", Optional<QualType>> { 648 if (!underlyingType.hasValue()) { 794 def : Property<"underlyingType", Optional<QualType>> { 803 QualType canon = (underlyingType [all …]
|
| H A D | Type.h | 4497 DecltypeType(Expr *E, QualType underlyingType, QualType can = QualType());
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaType.cpp | 6646 SplitQualType underlyingType = type.split(); in handleObjCOwnershipTypeAttr() local 6664 while (!prevTy || prevTy != underlyingType.Ty) { in handleObjCOwnershipTypeAttr() 6665 prevTy = underlyingType.Ty; in handleObjCOwnershipTypeAttr() 6666 underlyingType = underlyingType.getSingleStepDesugaredType(); in handleObjCOwnershipTypeAttr() 6668 underlyingType.Quals.removeObjCLifetime(); in handleObjCOwnershipTypeAttr() 6672 underlyingType.Quals.addObjCLifetime(lifetime); in handleObjCOwnershipTypeAttr() 6709 type = S.Context.getQualifiedType(underlyingType); in handleObjCOwnershipTypeAttr() 7166 QualType underlyingType = typedefDecl->getUnderlyingType(); in checkNullabilityTypeSpecifier() local 7168 = AttributedType::stripOuterNullability(underlyingType)) { in checkNullabilityTypeSpecifier()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | Type.cpp | 3432 DecltypeType::DecltypeType(Expr *E, QualType underlyingType, QualType can) in DecltypeType() argument 3442 E(E), UnderlyingType(underlyingType) {} in DecltypeType()
|
| H A D | ASTContext.cpp | 9636 QualType underlyingType = ET->getDecl()->getIntegerType(); in mergeEnumWithInteger() local 9637 if (underlyingType.isNull()) in mergeEnumWithInteger() 9639 if (Context.hasSameType(underlyingType, other)) in mergeEnumWithInteger() 9645 Context.getTypeSize(underlyingType) == Context.getTypeSize(other)) in mergeEnumWithInteger()
|