Searched defs:InnerType (Results 1 - 5 of 5) sorted by relevance

/external/clang/test/SemaTemplate/
H A Dms-sizeof-missing-typename.cpp33 // expected-warning@+1 {{missing 'typename' prior to dependent type name 'Bar::InnerType'}}
34 x1 = sizeof(typename T::/*template*/ InnerTemplate<sizeof(/*typename*/ T::InnerType)>),
35 // expected-warning@+1 {{missing 'typename' prior to dependent type name 'Bar::InnerType'}}
36 x2 = sizeof(typename T::template InnerTemplate<sizeof(/*typename*/ T::InnerType)>),
46 typedef double InnerType; typedef in struct:nested_sizeof::Bar
/external/clang/lib/Serialization/
H A DASTReader.cpp5339 QualType InnerType = readType(*Loc.F, Record, Idx); local
5340 return Context.getParenType(InnerType);
/external/clang/include/clang/AST/
H A DType.h1941 ParenType(QualType InnerType, QualType CanonType) : argument
1942 Type(Paren, CanonType, InnerType->isDependentType(),
1943 InnerType->isInstantiationDependentType(),
1944 InnerType->isVariablyModifiedType(),
1945 InnerType->containsUnexpandedParameterPack()),
1946 Inner(InnerType) {
/external/clang/lib/Sema/
H A DSemaChecking.cpp5964 const Type *InnerType = local
5966 if (isa<ImplicitCastExpr>(LastA) && (InnerType == Target)) {
H A DTreeTransform.h824 QualType RebuildParenType(QualType InnerType) { argument
825 return SemaRef.Context.getParenType(InnerType);

Completed in 679 milliseconds