Home
last modified time | relevance | path

Searched refs:UnderlyingType (Results 1 – 12 of 12) sorted by relevance

/external/libweave/third_party/chromium/base/numerics/
Dsafe_math.h201 struct UnderlyingType { struct
206 struct UnderlyingType<CheckedNumeric<NumericType>> { argument
247 OP CheckedNumeric<typename UnderlyingType<Src>::type>::cast(rhs); \
/external/libchrome/base/numerics/
Dsafe_math.h201 struct UnderlyingType { struct
206 struct UnderlyingType<CheckedNumeric<NumericType>> { argument
247 OP CheckedNumeric<typename UnderlyingType<Src>::type>::cast(rhs); \
/external/clang/lib/AST/
DType.cpp2914 UnderlyingType(underlyingType) { in DecltypeType()
2951 QualType UnderlyingType, in UnaryTransformType() argument
2954 : Type(UnaryTransform, CanonicalType, UnderlyingType->isDependentType(), in UnaryTransformType()
2955 UnderlyingType->isInstantiationDependentType(), in UnaryTransformType()
2956 UnderlyingType->isVariablyModifiedType(), in UnaryTransformType()
2958 , BaseType(BaseType), UnderlyingType(UnderlyingType), UKind(UKind) in UnaryTransformType()
DASTContext.cpp3939 QualType ASTContext::getDecltypeType(Expr *e, QualType UnderlyingType) const { in getDecltypeType()
3959 DecltypeType(e, UnderlyingType, QualType((DecltypeType *)Canon, 0)); in getDecltypeType()
3962 DecltypeType(e, UnderlyingType, getCanonicalType(UnderlyingType)); in getDecltypeType()
3971 QualType UnderlyingType, in getUnaryTransformType() argument
3975 new (*this, TypeAlignment) UnaryTransformType (BaseType, UnderlyingType, in getUnaryTransformType()
3977 UnderlyingType->isDependentType() ? in getUnaryTransformType()
3978 QualType() : getCanonicalType(UnderlyingType)); in getUnaryTransformType()
DASTImporter.cpp1721 QualType UnderlyingType = Importer.Import(T->getUnderlyingType()); in VisitDecltypeType() local
1722 if (UnderlyingType.isNull()) in VisitDecltypeType()
1725 return Importer.getToContext().getDecltypeType(ToExpr, UnderlyingType); in VisitDecltypeType()
/external/llvm/include/llvm/IR/
DDIBuilder.h377 DIType *UnderlyingType, StringRef UniqueIdentifier = "");
/external/llvm/lib/IR/
DDIBuilder.cpp454 DIType *UnderlyingType, StringRef UniqueIdentifier) { in createEnumerationType() argument
458 DITypeRef::get(UnderlyingType), SizeInBits, AlignInBits, 0, 0, Elements, in createEnumerationType()
/external/clang/include/clang/AST/
DType.h3450 QualType UnderlyingType;
3457 QualType getUnderlyingType() const { return UnderlyingType; }
3499 QualType UnderlyingType;
3508 QualType desugar() const { return UnderlyingType; }
3510 QualType getUnderlyingType() const { return UnderlyingType; }
DASTContext.h1295 QualType getDecltypeType(Expr *e, QualType UnderlyingType) const;
1298 QualType getUnaryTransformType(QualType BaseType, QualType UnderlyingType,
/external/clang/lib/Serialization/
DASTReader.cpp5400 QualType UnderlyingType = readType(*Loc.F, Record, Idx); in readTypeRecord() local
5401 return Context.getTypeOfType(UnderlyingType); in readTypeRecord()
5405 QualType UnderlyingType = readType(*Loc.F, Record, Idx); in readTypeRecord() local
5406 return Context.getDecltypeType(ReadExpr(*Loc.F), UnderlyingType); in readTypeRecord()
5411 QualType UnderlyingType = readType(*Loc.F, Record, Idx); in readTypeRecord() local
5413 return Context.getUnaryTransformType(BaseType, UnderlyingType, UKind); in readTypeRecord()
/external/clang/lib/Sema/
DSemaDecl.cpp11826 TypeResult UnderlyingType, in ActOnTag() argument
11889 if (UnderlyingType.isInvalid() || (!UnderlyingType.get() && ScopedEnum)) in ActOnTag()
11893 else if (UnderlyingType.get()) { in ActOnTag()
11897 GetTypeFromParser(UnderlyingType.get(), &TI); in ActOnTag()
/external/clang/include/clang/Sema/
DSema.h1898 bool ScopedEnumUsesClassTag, TypeResult UnderlyingType,