Searched refs:UnderlyingType (Results 1 – 10 of 10) sorted by relevance
/external/clang/lib/AST/ |
D | Type.cpp | 1841 UnderlyingType(underlyingType) { in DecltypeType() 1878 QualType UnderlyingType, in UnaryTransformType() argument 1881 : Type(UnaryTransform, CanonicalType, UnderlyingType->isDependentType(), in UnaryTransformType() 1882 UnderlyingType->isInstantiationDependentType(), in UnaryTransformType() 1883 UnderlyingType->isVariablyModifiedType(), in UnaryTransformType() 1885 , BaseType(BaseType), UnderlyingType(UnderlyingType), UKind(UKind) in UnaryTransformType()
|
D | ASTContext.cpp | 3779 QualType ASTContext::getDecltypeType(Expr *e, QualType UnderlyingType) const { in getDecltypeType() 3799 DecltypeType(e, UnderlyingType, QualType((DecltypeType *)Canon, 0)); in getDecltypeType() 3802 DecltypeType(e, UnderlyingType, getCanonicalType(UnderlyingType)); in getDecltypeType() 3811 QualType UnderlyingType, in getUnaryTransformType() argument 3815 new (*this, TypeAlignment) UnaryTransformType (BaseType, UnderlyingType, in getUnaryTransformType() 3817 UnderlyingType->isDependentType() ? in getUnaryTransformType() 3818 QualType() : getCanonicalType(UnderlyingType)); in getUnaryTransformType()
|
D | ASTImporter.cpp | 1678 QualType UnderlyingType = Importer.Import(T->getUnderlyingType()); in VisitDecltypeType() local 1679 if (UnderlyingType.isNull()) in VisitDecltypeType() 1682 return Importer.getToContext().getDecltypeType(ToExpr, UnderlyingType); in VisitDecltypeType()
|
/external/llvm/include/llvm/IR/ |
D | DIBuilder.h | 376 MDType *UnderlyingType, StringRef UniqueIdentifier = "");
|
/external/llvm/lib/IR/ |
D | DIBuilder.cpp | 436 MDType *UnderlyingType, StringRef UniqueIdentifier) { in createEnumerationType() argument 440 MDTypeRef::get(UnderlyingType), SizeInBits, AlignInBits, 0, 0, Elements, in createEnumerationType()
|
/external/clang/include/clang/AST/ |
D | Type.h | 3296 QualType UnderlyingType; 3303 QualType getUnderlyingType() const { return UnderlyingType; } 3345 QualType UnderlyingType; 3354 QualType desugar() const { return UnderlyingType; } 3356 QualType getUnderlyingType() const { return UnderlyingType; }
|
D | ASTContext.h | 1189 QualType getDecltypeType(Expr *e, QualType UnderlyingType) const; 1192 QualType getUnaryTransformType(QualType BaseType, QualType UnderlyingType,
|
/external/clang/lib/Serialization/ |
D | ASTReader.cpp | 5454 QualType UnderlyingType = readType(*Loc.F, Record, Idx); in readTypeRecord() local 5455 return Context.getTypeOfType(UnderlyingType); in readTypeRecord() 5459 QualType UnderlyingType = readType(*Loc.F, Record, Idx); in readTypeRecord() local 5460 return Context.getDecltypeType(ReadExpr(*Loc.F), UnderlyingType); in readTypeRecord() 5465 QualType UnderlyingType = readType(*Loc.F, Record, Idx); in readTypeRecord() local 5467 return Context.getUnaryTransformType(BaseType, UnderlyingType, UKind); in readTypeRecord()
|
/external/clang/lib/Sema/ |
D | SemaDecl.cpp | 11284 TypeResult UnderlyingType, in ActOnTag() argument 11346 if (UnderlyingType.isInvalid() || (!UnderlyingType.get() && ScopedEnum)) in ActOnTag() 11350 else if (UnderlyingType.get()) { in ActOnTag() 11354 GetTypeFromParser(UnderlyingType.get(), &TI); in ActOnTag()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 1735 bool ScopedEnumUsesClassTag, TypeResult UnderlyingType,
|