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

  /external/clang/lib/Sema/
SemaTemplateVariadic.cpp 25 // Visitor that collects unexpanded parameter packs
29 /// \brief A class that collects unexpanded parameter packs.
36 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded;
42 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded)
43 : Unexpanded(Unexpanded), InLambda(false) { }
48 // Recording occurrences of (unexpanded) parameter packs.
54 Unexpanded.push_back(std::make_pair(TL.getTypePtr(), TL.getNameLoc()));
65 Unexpanded.push_back(std::make_pair(T, SourceLocation()));
74 Unexpanded.push_back(std::make_pair(E->getDecl(), E->getLocation()))
    [all...]
SemaTemplateInstantiate.cpp 711 llvm::ArrayRef<UnexpandedParameterPack> Unexpanded,
716 PatternRange, Unexpanded,
    [all...]
SemaTemplateDeduction.cpp 559 /// \brief Retrieve the depth and index of an unexpanded parameter pack.
776 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
777 S.collectUnexpandedParameterPacks(Pattern, Unexpanded);
778 for (unsigned I = 0, N = Unexpanded.size(); I != N; ++I) {
780 llvm::tie(Depth, Index) = getDepthAndIndex(Unexpanded[I]);
787 assert(!PackIndices.empty() && "Pack expansion without unexpanded packs?");
    [all...]
SemaTemplateInstantiateDecl.cpp 91 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
94 Unexpanded);
97 Unexpanded);
98 assert(!Unexpanded.empty() && "Pack expansion without parameter packs?");
106 Unexpanded, TemplateArgs, Expand,
    [all...]
SemaExprCXX.cpp     [all...]
TreeTransform.h 224 /// \param Unexpanded The set of unexpanded parameter packs within the
231 /// \param RetainExpansion Whether the caller should add an unexpanded
250 ArrayRef<UnexpandedParameterPack> Unexpanded,
    [all...]
SemaDeclCXX.cpp 296 // Check for unexpanded parameter packs.
    [all...]

Completed in 297 milliseconds