Home
last modified time | relevance | path

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

/trueos/contrib/llvm/tools/clang/lib/Sema/
HDSemaType.cpp4075 SplitQualType underlyingType = type.split(); in handleObjCOwnershipTypeAttr() local
4092 while (!underlyingType.Quals.hasObjCLifetime()) { in handleObjCOwnershipTypeAttr()
4093 underlyingType = underlyingType.getSingleStepDesugaredType(); in handleObjCOwnershipTypeAttr()
4095 underlyingType.Quals.removeObjCLifetime(); in handleObjCOwnershipTypeAttr()
4099 underlyingType.Quals.addObjCLifetime(lifetime); in handleObjCOwnershipTypeAttr()
4117 type = S.Context.getQualifiedType(underlyingType); in handleObjCOwnershipTypeAttr()
/trueos/contrib/llvm/tools/clang/lib/AST/
HDType.cpp1785 DecltypeType::DecltypeType(Expr *E, QualType underlyingType, QualType can) in DecltypeType() argument
1794 UnderlyingType(underlyingType) { in DecltypeType()
HDASTContext.cpp7101 QualType underlyingType = ET->getDecl()->getIntegerType(); in mergeEnumWithInteger() local
7102 if (underlyingType.isNull()) return QualType(); in mergeEnumWithInteger()
7103 if (Context.hasSameType(underlyingType, other)) in mergeEnumWithInteger()
7109 Context.getTypeSize(underlyingType) == Context.getTypeSize(other)) in mergeEnumWithInteger()
/trueos/contrib/llvm/tools/clang/include/clang/AST/
HDType.h3218 DecltypeType(Expr *E, QualType underlyingType, QualType can = QualType());