Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaType.cpp6021 SplitQualType underlyingType = type.split(); in handleObjCOwnershipTypeAttr() local
6039 while (!prevTy || prevTy != underlyingType.Ty) { in handleObjCOwnershipTypeAttr()
6040 prevTy = underlyingType.Ty; in handleObjCOwnershipTypeAttr()
6041 underlyingType = underlyingType.getSingleStepDesugaredType(); in handleObjCOwnershipTypeAttr()
6043 underlyingType.Quals.removeObjCLifetime(); in handleObjCOwnershipTypeAttr()
6047 underlyingType.Quals.addObjCLifetime(lifetime); in handleObjCOwnershipTypeAttr()
6084 type = S.Context.getQualifiedType(underlyingType); in handleObjCOwnershipTypeAttr()
6489 QualType underlyingType = typedefDecl->getUnderlyingType(); in checkNullabilityTypeSpecifier() local
6491 = AttributedType::stripOuterNullability(underlyingType)) { in checkNullabilityTypeSpecifier()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DType.cpp3108 DecltypeType::DecltypeType(Expr *E, QualType underlyingType, QualType can) in DecltypeType() argument
3116 E(E), UnderlyingType(underlyingType) {} in DecltypeType()
H A DASTContext.cpp8682 QualType underlyingType = ET->getDecl()->getIntegerType(); in mergeEnumWithInteger() local
8683 if (underlyingType.isNull()) in mergeEnumWithInteger()
8685 if (Context.hasSameType(underlyingType, other)) in mergeEnumWithInteger()
8691 Context.getTypeSize(underlyingType) == Context.getTypeSize(other)) in mergeEnumWithInteger()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DType.h4253 DecltypeType(Expr *E, QualType underlyingType, QualType can = QualType());