Home
last modified time | relevance | path

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

/minix/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaType.cpp4089 SplitQualType underlyingType = type.split(); in handleObjCOwnershipTypeAttr() local
4106 while (!underlyingType.Quals.hasObjCLifetime()) { in handleObjCOwnershipTypeAttr()
4107 underlyingType = underlyingType.getSingleStepDesugaredType(); in handleObjCOwnershipTypeAttr()
4109 underlyingType.Quals.removeObjCLifetime(); in handleObjCOwnershipTypeAttr()
4113 underlyingType.Quals.addObjCLifetime(lifetime); in handleObjCOwnershipTypeAttr()
4131 type = S.Context.getQualifiedType(underlyingType); in handleObjCOwnershipTypeAttr()
/minix/external/bsd/llvm/dist/clang/lib/AST/
H A DType.cpp1838 DecltypeType::DecltypeType(Expr *E, QualType underlyingType, QualType can) in DecltypeType() argument
1847 UnderlyingType(underlyingType) { in DecltypeType()
H A DASTContext.cpp7081 QualType underlyingType = ET->getDecl()->getIntegerType(); in mergeEnumWithInteger() local
7082 if (underlyingType.isNull()) return QualType(); in mergeEnumWithInteger()
7083 if (Context.hasSameType(underlyingType, other)) in mergeEnumWithInteger()
7089 Context.getTypeSize(underlyingType) == Context.getTypeSize(other)) in mergeEnumWithInteger()
/minix/external/bsd/llvm/dist/clang/include/clang/AST/
H A DType.h3298 DecltypeType(Expr *E, QualType underlyingType, QualType can = QualType());