Searched refs:underlyingType (Results 1 – 5 of 5) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/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> { 427 return ctx.getUnaryTransformType(baseType, underlyingType, transform); 581 def : Property<"underlyingType", QualType> { 589 return ctx.getMacroQualifiedType(underlyingType, macroIdentifier); 636 def : Property<"underlyingType", Optional<QualType>> { 648 if (!underlyingType.hasValue()) { [all …]
|
| H A D | Type.h | 4497 DecltypeType(Expr *E, QualType underlyingType, QualType can = QualType());
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaType.cpp | 6613 SplitQualType underlyingType = type.split(); in handleObjCOwnershipTypeAttr() local 6631 while (!prevTy || prevTy != underlyingType.Ty) { in handleObjCOwnershipTypeAttr() 6632 prevTy = underlyingType.Ty; in handleObjCOwnershipTypeAttr() 6633 underlyingType = underlyingType.getSingleStepDesugaredType(); in handleObjCOwnershipTypeAttr() 6635 underlyingType.Quals.removeObjCLifetime(); in handleObjCOwnershipTypeAttr() 6639 underlyingType.Quals.addObjCLifetime(lifetime); in handleObjCOwnershipTypeAttr() 6676 type = S.Context.getQualifiedType(underlyingType); in handleObjCOwnershipTypeAttr() 7133 QualType underlyingType = typedefDecl->getUnderlyingType(); in checkNullabilityTypeSpecifier() local 7135 = AttributedType::stripOuterNullability(underlyingType)) { in checkNullabilityTypeSpecifier()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | Type.cpp | 3428 DecltypeType::DecltypeType(Expr *E, QualType underlyingType, QualType can) in DecltypeType() argument 3438 E(E), UnderlyingType(underlyingType) {} in DecltypeType()
|
| H A D | ASTContext.cpp | 9602 QualType underlyingType = ET->getDecl()->getIntegerType(); in mergeEnumWithInteger() local 9603 if (underlyingType.isNull()) in mergeEnumWithInteger() 9605 if (Context.hasSameType(underlyingType, other)) in mergeEnumWithInteger() 9611 Context.getTypeSize(underlyingType) == Context.getTypeSize(other)) in mergeEnumWithInteger()
|