Searched refs:underlyingType (Results 1 – 5 of 5) sorted by relevance
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | TypeProperties.td | 395 def : Property<"underlyingType", QualType> { 400 return ctx.getUsingType(foundDeclaration, underlyingType); 408 def : Property<"underlyingType", QualType> { 413 return ctx.getTypedefType(cast<TypedefNameDecl>(declaration), underlyingType); 446 def : Property<"underlyingType", QualType> { 454 return ctx.getDecltypeType(expression, underlyingType); 479 def : Property<"underlyingType", QualType> { 487 return ctx.getUnaryTransformType(baseType, underlyingType, transform); 641 def : Property<"underlyingType", QualType> { 649 return ctx.getMacroQualifiedType(underlyingType, macroIdentifier);
|
| H A D | Type.h | 5964 DecltypeType(Expr *E, QualType underlyingType, QualType can = QualType());
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaType.cpp | 6659 SplitQualType underlyingType = type.split(); in handleObjCOwnershipTypeAttr() local 6677 while (!prevTy || prevTy != underlyingType.Ty) { in handleObjCOwnershipTypeAttr() 6678 prevTy = underlyingType.Ty; in handleObjCOwnershipTypeAttr() 6679 underlyingType = underlyingType.getSingleStepDesugaredType(); in handleObjCOwnershipTypeAttr() 6681 underlyingType.Quals.removeObjCLifetime(); in handleObjCOwnershipTypeAttr() 6685 underlyingType.Quals.addObjCLifetime(lifetime); in handleObjCOwnershipTypeAttr() 6722 type = S.Context.getQualifiedType(underlyingType); in handleObjCOwnershipTypeAttr() 7282 QualType underlyingType = typedefDecl->getUnderlyingType(); in CheckNullabilityTypeSpecifier() local 7284 AttributedType::stripOuterNullability(underlyingType)) { in CheckNullabilityTypeSpecifier()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | Type.cpp | 4130 DecltypeType::DecltypeType(Expr *E, QualType underlyingType, QualType can) in DecltypeType() argument 4140 E(E), UnderlyingType(underlyingType) {} in DecltypeType()
|
| H A D | ASTContext.cpp | 11552 QualType underlyingType = ET->getDecl()->getIntegerType(); in mergeEnumWithInteger() local 11553 if (underlyingType.isNull()) in mergeEnumWithInteger() 11555 if (Context.hasSameType(underlyingType, other)) in mergeEnumWithInteger() 11561 Context.getTypeSize(underlyingType) == Context.getTypeSize(other)) in mergeEnumWithInteger()
|