Searched defs:InnerType (Results 1 - 7 of 7) 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/CodeGen/
H A DCGExprConstant.cpp1267 QualType InnerType = AT->getValueType(); local
1268 auto *Inner = EmitConstantValue(Value, InnerType, CGF);
1270 uint64_t InnerSize = Context.getTypeSize(InnerType);
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp813 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT(); local
814 Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
/external/clang/lib/Serialization/
H A DASTReader.cpp5499 QualType InnerType = readType(*Loc.F, Record, Idx); local
5500 return Context.getParenType(InnerType);
/external/clang/include/clang/AST/
H A DType.h2151 ParenType(QualType InnerType, QualType CanonType) : argument
2152 Type(Paren, CanonType, InnerType->isDependentType(),
2153 InnerType->isInstantiationDependentType(),
2154 InnerType->isVariablyModifiedType(),
2155 InnerType->containsUnexpandedParameterPack()),
2156 Inner(InnerType) {
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp12005 QualType InnerType = Ptr->getPointeeType(); local
12008 if (!(Context.hasSameType(InnerType.getUnqualifiedType(),
12010 InnerType.isConstQualified() && !InnerType.isVolatileQualified())) {
12061 QualType InnerType = PointeeType.getUnqualifiedType(); local
12064 if (!(Context.hasSameType(InnerType, Context.CharTy) ||
12065 Context.hasSameType(InnerType, Context.WideCharTy) ||
12066 Context.hasSameType(InnerType, Context.Char16Ty) ||
12067 Context.hasSameType(InnerType, Context.Char32Ty))) {
H A DTreeTransform.h881 QualType RebuildParenType(QualType InnerType) { argument
882 return SemaRef.Context.getParenType(InnerType);

Completed in 369 milliseconds