Home
last modified time | relevance | path

Searched refs:Unexpanded (Results 1 – 8 of 8) sorted by relevance

/external/clang/lib/Sema/
DSemaTemplateVariadic.cpp37 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded; member in __anon919447560111::CollectUnexpandedParameterPacksVisitor
43 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded) in CollectUnexpandedParameterPacksVisitor() argument
44 : Unexpanded(Unexpanded), InLambda(false) { } in CollectUnexpandedParameterPacksVisitor()
55 Unexpanded.push_back(std::make_pair(TL.getTypePtr(), TL.getNameLoc())); in VisitTemplateTypeParmTypeLoc()
66 Unexpanded.push_back(std::make_pair(T, SourceLocation())); in VisitTemplateTypeParmType()
75 Unexpanded.push_back(std::make_pair(E->getDecl(), E->getLocation())); in VisitDeclRefExpr()
86 Unexpanded.push_back(std::make_pair(TTP, SourceLocation())); in TraverseTemplateName()
188 Unexpanded.push_back(std::make_pair(VD, I->getLocation())); in TraverseLambdaExpr()
219 ArrayRef<UnexpandedParameterPack> Unexpanded) { in DiagnoseUnexpandedParameterPacks() argument
220 if (Unexpanded.empty()) in DiagnoseUnexpandedParameterPacks()
[all …]
DSemaTemplateInstantiateDecl.cpp106 SmallVector<UnexpandedParameterPack, 2> Unexpanded; in instantiateDependentAlignedAttr() local
109 Unexpanded); in instantiateDependentAlignedAttr()
112 Unexpanded); in instantiateDependentAlignedAttr()
113 assert(!Unexpanded.empty() && "Pack expansion without parameter packs?"); in instantiateDependentAlignedAttr()
121 Unexpanded, TemplateArgs, Expand, in instantiateDependentAlignedAttr()
2081 SmallVector<UnexpandedParameterPack, 2> Unexpanded; in VisitNonTypeTemplateParmDecl() local
2082 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded); in VisitNonTypeTemplateParmDecl()
2093 Unexpanded, in VisitNonTypeTemplateParmDecl()
2193 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded) { in collectUnexpandedParameterPacks() argument
2199 Unexpanded); in collectUnexpandedParameterPacks()
[all …]
DTreeTransform.h255 ArrayRef<UnexpandedParameterPack> Unexpanded, in TryExpandParameterPacks() argument
3304 SmallVector<UnexpandedParameterPack, 2> Unexpanded; in TransformExprs() local
3305 getSema().collectUnexpandedParameterPacks(Pattern, Unexpanded); in TransformExprs()
3306 assert(!Unexpanded.empty() && "Pack expansion without parameter packs?"); in TransformExprs()
3316 Unexpanded, in TransformExprs()
3887 SmallVector<UnexpandedParameterPack, 2> Unexpanded; in TransformTemplateArguments() local
3888 getSema().collectUnexpandedParameterPacks(Pattern, Unexpanded); in TransformTemplateArguments()
3889 assert(!Unexpanded.empty() && "Pack expansion without parameter packs?"); in TransformTemplateArguments()
3898 Unexpanded, in TransformTemplateArguments()
4717 SmallVector<UnexpandedParameterPack, 2> Unexpanded; in TransformFunctionTypeParams() local
[all …]
DSemaTemplateInstantiate.cpp659 ArrayRef<UnexpandedParameterPack> Unexpanded, in TryExpandParameterPacks() argument
663 PatternRange, Unexpanded, in TryExpandParameterPacks()
1757 SmallVector<UnexpandedParameterPack, 2> Unexpanded; in SubstBaseSpecifiers() local
1759 Unexpanded); in SubstBaseSpecifiers()
1765 Unexpanded, in SubstBaseSpecifiers()
DSemaTemplateDeduction.cpp587 SmallVector<UnexpandedParameterPack, 2> Unexpanded; in PackDeductionScope() local
588 S.collectUnexpandedParameterPacks(Pattern, Unexpanded); in PackDeductionScope()
589 for (unsigned I = 0, N = Unexpanded.size(); I != N; ++I) { in PackDeductionScope()
591 std::tie(Depth, Index) = getDepthAndIndex(Unexpanded[I]); in PackDeductionScope()
DSemaExprCXX.cpp7131 SmallVector<UnexpandedParameterPack, 4> Unexpanded; in CheckMicrosoftIfExistsSymbol() local
7132 collectUnexpandedParameterPacks(SS, Unexpanded); in CheckMicrosoftIfExistsSymbol()
7133 collectUnexpandedParameterPacks(TargetNameInfo, Unexpanded); in CheckMicrosoftIfExistsSymbol()
7134 if (!Unexpanded.empty()) { in CheckMicrosoftIfExistsSymbol()
7138 Unexpanded); in CheckMicrosoftIfExistsSymbol()
DSemaDeclCXX.cpp13866 SmallVector<UnexpandedParameterPack, 2> Unexpanded; in checkExceptionSpecification() local
13867 collectUnexpandedParameterPacks(ET, Unexpanded); in checkExceptionSpecification()
13868 if (!Unexpanded.empty()) { in checkExceptionSpecification()
13871 Unexpanded); in checkExceptionSpecification()
/external/clang/include/clang/Sema/
DSema.h6147 ArrayRef<UnexpandedParameterPack> Unexpanded);
6220 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded);
6228 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded);
6236 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded);
6244 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded);
6252 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded);
6260 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded);
6349 ArrayRef<UnexpandedParameterPack> Unexpanded,