Home
last modified time | relevance | path

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

/external/webkit/Source/WebKit/win/
DCOMVariantSetter.h123 template<typename COMType, typename UnderlyingType>
124 struct COMIUnknownVariantSetter : COMVariantSetterBase<UnderlyingType>
128 static void setVariant(VARIANT* variant, const UnderlyingType& value)
144 template<typename UnderlyingType>
145 COMVariant(UnderlyingType value)
148 COMVariantSetter<UnderlyingType>::setVariant(&m_variant, value);
/external/clang/lib/AST/
DType.cpp1694 UnderlyingType(underlyingType) { in DecltypeType()
1733 QualType UnderlyingType, in UnaryTransformType() argument
1736 : Type(UnaryTransform, CanonicalType, UnderlyingType->isDependentType(), in UnaryTransformType()
1737 UnderlyingType->isInstantiationDependentType(), in UnaryTransformType()
1738 UnderlyingType->isVariablyModifiedType(), in UnaryTransformType()
1740 , BaseType(BaseType), UnderlyingType(UnderlyingType), UKind(UKind) in UnaryTransformType()
DASTContext.cpp2936 QualType ASTContext::getDecltypeType(Expr *e, QualType UnderlyingType) const { in getDecltypeType()
2962 dt = new (*this, TypeAlignment) DecltypeType(e, UnderlyingType, in getDecltypeType()
2963 getCanonicalType(UnderlyingType)); in getDecltypeType()
2972 QualType UnderlyingType, in getUnaryTransformType() argument
2976 new (*this, TypeAlignment) UnaryTransformType (BaseType, UnderlyingType, in getUnaryTransformType()
2978 UnderlyingType->isDependentType() ? in getUnaryTransformType()
2979 QualType() : getCanonicalType(UnderlyingType)); in getUnaryTransformType()
DASTImporter.cpp1586 QualType UnderlyingType = Importer.Import(T->getUnderlyingType()); in VisitDecltypeType() local
1587 if (UnderlyingType.isNull()) in VisitDecltypeType()
1590 return Importer.getToContext().getDecltypeType(ToExpr, UnderlyingType); in VisitDecltypeType()
/external/clang/include/clang/AST/
DASTContext.h888 QualType getDecltypeType(Expr *e, QualType UnderlyingType) const;
891 QualType getUnaryTransformType(QualType BaseType, QualType UnderlyingType,
DType.h3073 QualType UnderlyingType;
3080 QualType getUnderlyingType() const { return UnderlyingType; }
3123 QualType UnderlyingType;
3132 QualType desugar() const { return UnderlyingType; }
3134 QualType getUnderlyingType() const { return UnderlyingType; }
/external/clang/lib/Serialization/
DASTReader.cpp3901 QualType UnderlyingType = readType(*Loc.F, Record, Idx); in readTypeRecord() local
3902 return Context.getTypeOfType(UnderlyingType); in readTypeRecord()
3906 QualType UnderlyingType = readType(*Loc.F, Record, Idx); in readTypeRecord() local
3907 return Context.getDecltypeType(ReadExpr(*Loc.F), UnderlyingType); in readTypeRecord()
3912 QualType UnderlyingType = readType(*Loc.F, Record, Idx); in readTypeRecord() local
3914 return Context.getUnaryTransformType(BaseType, UnderlyingType, UKind); in readTypeRecord()
/external/clang/lib/Sema/
DSemaDecl.cpp7963 TypeResult UnderlyingType) { in ActOnTag() argument
8020 if (UnderlyingType.isInvalid() || (!UnderlyingType.get() && ScopedEnum)) in ActOnTag()
8024 else if (UnderlyingType.get()) { in ActOnTag()
8028 GetTypeFromParser(UnderlyingType.get(), &TI); in ActOnTag()
/external/clang/include/clang/Sema/
DSema.h1279 bool ScopedEnumUsesClassTag, TypeResult UnderlyingType);