/external/libweave/third_party/chromium/base/numerics/ |
D | safe_math.h | 201 struct UnderlyingType { struct 206 struct UnderlyingType<CheckedNumeric<NumericType>> { argument 247 OP CheckedNumeric<typename UnderlyingType<Src>::type>::cast(rhs); \
|
/external/libchrome/base/numerics/ |
D | safe_math.h | 201 struct UnderlyingType { struct 206 struct UnderlyingType<CheckedNumeric<NumericType>> { argument 247 OP CheckedNumeric<typename UnderlyingType<Src>::type>::cast(rhs); \
|
/external/clang/lib/AST/ |
D | Type.cpp | 2914 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()
|
D | ASTContext.cpp | 3939 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()
|
D | ASTImporter.cpp | 1721 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/ |
D | DIBuilder.h | 377 DIType *UnderlyingType, StringRef UniqueIdentifier = "");
|
/external/llvm/lib/IR/ |
D | DIBuilder.cpp | 454 DIType *UnderlyingType, StringRef UniqueIdentifier) { in createEnumerationType() argument 458 DITypeRef::get(UnderlyingType), SizeInBits, AlignInBits, 0, 0, Elements, in createEnumerationType()
|
/external/clang/include/clang/AST/ |
D | Type.h | 3450 QualType UnderlyingType; 3457 QualType getUnderlyingType() const { return UnderlyingType; } 3499 QualType UnderlyingType; 3508 QualType desugar() const { return UnderlyingType; } 3510 QualType getUnderlyingType() const { return UnderlyingType; }
|
D | ASTContext.h | 1295 QualType getDecltypeType(Expr *e, QualType UnderlyingType) const; 1298 QualType getUnaryTransformType(QualType BaseType, QualType UnderlyingType,
|
/external/clang/lib/Serialization/ |
D | ASTReader.cpp | 5400 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/ |
D | SemaDecl.cpp | 11826 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/ |
D | Sema.h | 1898 bool ScopedEnumUsesClassTag, TypeResult UnderlyingType,
|