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

  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp 318 NonTypeTemplateParmDecl *NTTP,
323 assert(NTTP->getDepth() == 0 &&
329 Deduced[NTTP->getIndex()],
332 Info.Param = NTTP;
333 Info.FirstArg = Deduced[NTTP->getIndex()];
338 Deduced[NTTP->getIndex()] = Result;
348 NonTypeTemplateParmDecl *NTTP,
352 assert(NTTP->getDepth() == 0 &&
359 Deduced[NTTP->getIndex()],
363 Info.Param = NTTP;
    [all...]
SemaTemplateInstantiate.cpp 630 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(ND))
631 return std::make_pair(NTTP->getDepth(), NTTP->getIndex());
    [all...]
SemaTemplate.cpp     [all...]
SemaTemplateVariadic.cpp 522 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(ND))
523 return std::make_pair(NTTP->getDepth(), NTTP->getIndex());
    [all...]
SemaCodeComplete.cpp     [all...]
SemaTemplateInstantiateDecl.cpp     [all...]
SemaOverload.cpp     [all...]
  /external/clang/lib/AST/
DeclTemplate.cpp 42 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(P))
43 if (NTTP->getType()->containsUnexpandedParameterPack())
75 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*P))
76 if (NTTP->isExpandedParameterPack()) {
77 NumRequiredArgs += NTTP->getNumExpansionTypes();
87 } else if (NonTypeTemplateParmDecl *NTTP
89 if (NTTP->hasDefaultArgument())
108 else if (const NonTypeTemplateParmDecl *NTTP
110 return NTTP->getDepth();
191 } else if (NonTypeTemplateParmDecl *NTTP
    [all...]
DeclPrinter.cpp 844 } else if (const NonTypeTemplateParmDecl *NTTP =
846 Out << NTTP->getType().getAsString(Policy);
848 if (NTTP->isParameterPack() && !isa<PackExpansionType>(NTTP->getType()))
851 if (IdentifierInfo *Name = NTTP->getIdentifier()) {
859 } else if (NTTP->hasDefaultArgument()) {
861 NTTP->getDefaultArgument()->printPretty(Out, nullptr, Policy,
    [all...]