Home
last modified time | relevance | path

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

/external/clang/test/SemaTemplate/
Dms-sizeof-missing-typename.cpp34 x1 = sizeof(typename T::/*template*/ InnerTemplate<sizeof(/*typename*/ T::InnerType)>),
36 x2 = sizeof(typename T::template InnerTemplate<sizeof(/*typename*/ T::InnerType)>),
46 typedef double InnerType; typedef
Dms-lookup-template-base-classes.cpp367 template <typename U> struct B { typedef U InnerType; }; typedef
/external/clang/lib/CodeGen/
DCGExprConstant.cpp1267 QualType InnerType = AT->getValueType(); in EmitConstantValue() local
1268 auto *Inner = EmitConstantValue(Value, InnerType, CGF); in EmitConstantValue()
1270 uint64_t InnerSize = Context.getTypeSize(InnerType); in EmitConstantValue()
/external/clang/include/clang/AST/
DType.h2151 ParenType(QualType InnerType, QualType CanonType) :
2152 Type(Paren, CanonType, InnerType->isDependentType(),
2153 InnerType->isInstantiationDependentType(),
2154 InnerType->isVariablyModifiedType(),
2155 InnerType->containsUnexpandedParameterPack()),
2156 Inner(InnerType) {
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h4928 InnerType) { in AST_MATCHER_P() argument
4929 return InnerType.matches(Node.getDecayedType(), Finder, Builder); in AST_MATCHER_P()
/external/clang/lib/Sema/
DSemaDeclCXX.cpp12005 QualType InnerType = Ptr->getPointeeType(); in CheckLiteralOperatorDeclaration() local
12008 if (!(Context.hasSameType(InnerType.getUnqualifiedType(), in CheckLiteralOperatorDeclaration()
12010 InnerType.isConstQualified() && !InnerType.isVolatileQualified())) { in CheckLiteralOperatorDeclaration()
12061 QualType InnerType = PointeeType.getUnqualifiedType(); in CheckLiteralOperatorDeclaration() local
12064 if (!(Context.hasSameType(InnerType, Context.CharTy) || in CheckLiteralOperatorDeclaration()
12065 Context.hasSameType(InnerType, Context.WideCharTy) || in CheckLiteralOperatorDeclaration()
12066 Context.hasSameType(InnerType, Context.Char16Ty) || in CheckLiteralOperatorDeclaration()
12067 Context.hasSameType(InnerType, Context.Char32Ty))) { in CheckLiteralOperatorDeclaration()
DTreeTransform.h881 QualType RebuildParenType(QualType InnerType) { in RebuildParenType() argument
882 return SemaRef.Context.getParenType(InnerType); in RebuildParenType()
/external/clang/lib/AST/
DASTContext.cpp3526 ASTContext::getParenType(QualType InnerType) const { in getParenType()
3528 ParenType::Profile(ID, InnerType); in getParenType()
3535 QualType Canon = InnerType; in getParenType()
3537 Canon = getCanonicalType(InnerType); in getParenType()
3543 T = new (*this, TypeAlignment) ParenType(InnerType, Canon); in getParenType()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DLegalizeDAG.cpp813 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT(); in LegalizeOp() local
814 Action = TLI.getOperationAction(Node->getOpcode(), InnerType); in LegalizeOp()
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeDAG.cpp972 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT(); in LegalizeOp() local
973 Action = TLI.getOperationAction(Node->getOpcode(), InnerType); in LegalizeOp()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DLegalizeDAG.cpp1003 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT(); in LegalizeOp() local
1004 Action = TLI.getOperationAction(Node->getOpcode(), InnerType); in LegalizeOp()
/external/clang/lib/Serialization/
DASTReader.cpp5499 QualType InnerType = readType(*Loc.F, Record, Idx); in readTypeRecord() local
5500 return Context.getParenType(InnerType); in readTypeRecord()