Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaType.cpp5432 SplitQualType underlyingType = type.split(); in handleObjCOwnershipTypeAttr() local
5450 while (!prevTy || prevTy != underlyingType.Ty) { in handleObjCOwnershipTypeAttr()
5451 prevTy = underlyingType.Ty; in handleObjCOwnershipTypeAttr()
5452 underlyingType = underlyingType.getSingleStepDesugaredType(); in handleObjCOwnershipTypeAttr()
5454 underlyingType.Quals.removeObjCLifetime(); in handleObjCOwnershipTypeAttr()
5458 underlyingType.Quals.addObjCLifetime(lifetime); in handleObjCOwnershipTypeAttr()
5495 type = S.Context.getQualifiedType(underlyingType); in handleObjCOwnershipTypeAttr()
5869 QualType underlyingType = typedefDecl->getUnderlyingType(); in checkNullabilityTypeSpecifier() local
5871 = AttributedType::stripOuterNullability(underlyingType)) { in checkNullabilityTypeSpecifier()
/external/doclava/src/com/google/doclava/
DConverter.java624 t = t.asAnnotatedType().underlyingType();
/external/clang/lib/AST/
DType.cpp2897 DecltypeType::DecltypeType(Expr *E, QualType underlyingType, QualType can) in DecltypeType() argument
2906 UnderlyingType(underlyingType) { in DecltypeType()
DASTContext.cpp7613 QualType underlyingType = ET->getDecl()->getIntegerType(); in mergeEnumWithInteger() local
7614 if (underlyingType.isNull()) return QualType(); in mergeEnumWithInteger()
7615 if (Context.hasSameType(underlyingType, other)) in mergeEnumWithInteger()
7621 Context.getTypeSize(underlyingType) == Context.getTypeSize(other)) in mergeEnumWithInteger()
/external/clang/include/clang/AST/
DType.h3598 DecltypeType(Expr *E, QualType underlyingType, QualType can = QualType());