HomeSort by relevance Sort by last modified time
    Searched refs:Unexpanded (Results 1 - 8 of 8) sorted by null

  /external/clang/lib/Sema/
SemaTemplateVariadic.cpp 26 // Visitor that collects unexpanded parameter packs
30 /// \brief A class that collects unexpanded parameter packs.
37 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded;
43 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded)
44 : Unexpanded(Unexpanded), InLambda(false) { }
49 // Recording occurrences of (unexpanded) parameter packs.
55 Unexpanded.push_back(std::make_pair(TL.getTypePtr(), TL.getNameLoc()));
66 Unexpanded.push_back(std::make_pair(T, SourceLocation()));
75 Unexpanded.push_back(std::make_pair(E->getDecl(), E->getLocation()))
    [all...]
SemaTemplateInstantiateDecl.cpp 106 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
109 Unexpanded);
112 Unexpanded);
113 assert(!Unexpanded.empty() && "Pack expansion without parameter packs?");
121 Unexpanded, TemplateArgs, Expand,
    [all...]
TreeTransform.h 229 /// \param Unexpanded The set of unexpanded parameter packs within the
236 /// \param RetainExpansion Whether the caller should add an unexpanded
255 ArrayRef<UnexpandedParameterPack> Unexpanded,
    [all...]
SemaTemplateInstantiate.cpp 662 ArrayRef<UnexpandedParameterPack> Unexpanded,
666 PatternRange, Unexpanded,
    [all...]
SemaTemplateDeduction.cpp 537 /// \brief Retrieve the depth and index of an unexpanded parameter pack.
591 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
592 S.collectUnexpandedParameterPacks(Pattern, Unexpanded);
593 for (unsigned I = 0, N = Unexpanded.size(); I != N; ++I) {
595 std::tie(Depth, Index) = getDepthAndIndex(Unexpanded[I]);
609 assert(!Packs.empty() && "Pack expansion without unexpanded packs?");
    [all...]
SemaExprCXX.cpp     [all...]
SemaDeclCXX.cpp 313 // Check for unexpanded parameter packs.
    [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 458 milliseconds