Home
last modified time | relevance | path

Searched refs:underlyingType (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DTypeProperties.td393 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 DType.h4497 DecltypeType(Expr *E, QualType underlyingType, QualType can = QualType());
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaType.cpp6613 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 DType.cpp3428 DecltypeType::DecltypeType(Expr *E, QualType underlyingType, QualType can) in DecltypeType() argument
3438 E(E), UnderlyingType(underlyingType) {} in DecltypeType()
H A DASTContext.cpp9602 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()