Searched refs:underlyingType (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | TypeProperties.td | 406 def : Property<"underlyingType", QualType> { 411 return ctx.getUsingType(foundDeclaration, underlyingType); 419 def : Property<"underlyingType", QualType> { 424 return ctx.getTypedefType(cast<TypedefNameDecl>(declaration), underlyingType); 457 def : Property<"underlyingType", QualType> { 465 return ctx.getDecltypeType(expression, underlyingType); 487 def : Property<"underlyingType", QualType> { 495 return ctx.getUnaryTransformType(baseType, underlyingType, transform); 649 def : Property<"underlyingType", QualType> { 657 return ctx.getMacroQualifiedType(underlyingType, macroIdentifier); [all …]
|
H A D | Type.h | 5752 DecltypeType(Expr *E, QualType underlyingType, QualType can = QualType());
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaType.cpp | 6632 SplitQualType underlyingType = type.split(); in handleObjCOwnershipTypeAttr() local 6650 while (!prevTy || prevTy != underlyingType.Ty) { in handleObjCOwnershipTypeAttr() 6651 prevTy = underlyingType.Ty; in handleObjCOwnershipTypeAttr() 6652 underlyingType = underlyingType.getSingleStepDesugaredType(); in handleObjCOwnershipTypeAttr() 6654 underlyingType.Quals.removeObjCLifetime(); in handleObjCOwnershipTypeAttr() 6658 underlyingType.Quals.addObjCLifetime(lifetime); in handleObjCOwnershipTypeAttr() 6695 type = S.Context.getQualifiedType(underlyingType); in handleObjCOwnershipTypeAttr() 7199 QualType underlyingType = typedefDecl->getUnderlyingType(); in CheckNullabilityTypeSpecifier() local 7201 AttributedType::stripOuterNullability(underlyingType)) { in CheckNullabilityTypeSpecifier()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Type.cpp | 3957 DecltypeType::DecltypeType(Expr *E, QualType underlyingType, QualType can) in DecltypeType() argument 3967 E(E), UnderlyingType(underlyingType) {} in DecltypeType()
|
H A D | ASTContext.cpp | 10979 QualType underlyingType = ET->getDecl()->getIntegerType(); in mergeEnumWithInteger() local 10980 if (underlyingType.isNull()) in mergeEnumWithInteger() 10982 if (Context.hasSameType(underlyingType, other)) in mergeEnumWithInteger() 10988 Context.getTypeSize(underlyingType) == Context.getTypeSize(other)) in mergeEnumWithInteger()
|