Searched refs:underlyingType (Results 1 – 5 of 5) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | TypeProperties.td | 373 def : Property<"underlyingType", QualType> { 378 return ctx.getUsingType(foundDeclaration, underlyingType); 386 def : Property<"underlyingType", QualType> { 424 def : Property<"underlyingType", QualType> { 432 return ctx.getDecltypeType(expression, underlyingType); 440 def : Property<"underlyingType", QualType> { 602 def : Property<"underlyingType", QualType> { 670 def : Property<"underlyingType", Optional<QualType>> { 682 if (!underlyingType) { 842 def : Property<"underlyingType", Optional<QualType>> { [all …]
|
| H A D | Type.h | 4905 DecltypeType(Expr *E, QualType underlyingType, QualType can = QualType());
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaType.cpp | 7049 SplitQualType underlyingType = type.split(); in handleObjCOwnershipTypeAttr() local 7067 while (!prevTy || prevTy != underlyingType.Ty) { in handleObjCOwnershipTypeAttr() 7068 prevTy = underlyingType.Ty; in handleObjCOwnershipTypeAttr() 7069 underlyingType = underlyingType.getSingleStepDesugaredType(); in handleObjCOwnershipTypeAttr() 7071 underlyingType.Quals.removeObjCLifetime(); in handleObjCOwnershipTypeAttr() 7075 underlyingType.Quals.addObjCLifetime(lifetime); in handleObjCOwnershipTypeAttr() 7112 type = S.Context.getQualifiedType(underlyingType); in handleObjCOwnershipTypeAttr() 7616 QualType underlyingType = typedefDecl->getUnderlyingType(); in CheckNullabilityTypeSpecifier() local 7618 AttributedType::stripOuterNullability(underlyingType)) { in CheckNullabilityTypeSpecifier()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | Type.cpp | 3787 DecltypeType::DecltypeType(Expr *E, QualType underlyingType, QualType can) in DecltypeType() argument 3797 E(E), UnderlyingType(underlyingType) {} in DecltypeType()
|
| H A D | ASTContext.cpp | 10504 QualType underlyingType = ET->getDecl()->getIntegerType(); in mergeEnumWithInteger() local 10505 if (underlyingType.isNull()) in mergeEnumWithInteger() 10507 if (Context.hasSameType(underlyingType, other)) in mergeEnumWithInteger() 10513 Context.getTypeSize(underlyingType) == Context.getTypeSize(other)) in mergeEnumWithInteger()
|