Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaType.cpp5086 SplitQualType underlyingType = type.split(); in handleObjCOwnershipTypeAttr() local
5103 while (!underlyingType.Quals.hasObjCLifetime()) { in handleObjCOwnershipTypeAttr()
5104 underlyingType = underlyingType.getSingleStepDesugaredType(); in handleObjCOwnershipTypeAttr()
5106 underlyingType.Quals.removeObjCLifetime(); in handleObjCOwnershipTypeAttr()
5110 underlyingType.Quals.addObjCLifetime(lifetime); in handleObjCOwnershipTypeAttr()
5128 type = S.Context.getQualifiedType(underlyingType); in handleObjCOwnershipTypeAttr()
5482 QualType underlyingType = typedefDecl->getUnderlyingType(); in checkNullabilityTypeSpecifier() local
5484 = AttributedType::stripOuterNullability(underlyingType)) { in checkNullabilityTypeSpecifier()
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDType.cpp2802 DecltypeType::DecltypeType(Expr *E, QualType underlyingType, QualType can) in DecltypeType() argument
2811 UnderlyingType(underlyingType) { in DecltypeType()
HDASTContext.cpp7433 QualType underlyingType = ET->getDecl()->getIntegerType(); in mergeEnumWithInteger() local
7434 if (underlyingType.isNull()) return QualType(); in mergeEnumWithInteger()
7435 if (Context.hasSameType(underlyingType, other)) in mergeEnumWithInteger()
7441 Context.getTypeSize(underlyingType) == Context.getTypeSize(other)) in mergeEnumWithInteger()
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDType.h3427 DecltypeType(Expr *E, QualType underlyingType, QualType can = QualType());