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 291 NonTypeTemplateParmDecl *NTTP,
296 assert(NTTP->getDepth() == 0 &&
302 Deduced[NTTP->getIndex()],
305 Info.Param = NTTP;
306 Info.FirstArg = Deduced[NTTP->getIndex()];
311 Deduced[NTTP->getIndex()] = Result;
321 NonTypeTemplateParmDecl *NTTP,
325 assert(NTTP->getDepth() == 0 &&
332 Deduced[NTTP->getIndex()],
336 Info.Param = NTTP;
    [all...]
SemaTemplateInstantiate.cpp 614 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(ND))
615 return std::make_pair(NTTP->getDepth(), NTTP->getIndex());
    [all...]
SemaTemplate.cpp     [all...]
SemaTemplateVariadic.cpp 531 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(ND))
532 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();
217 } else if (NonTypeTemplateParmDecl *NTTP
    [all...]
DeclPrinter.cpp 863 } else if (const NonTypeTemplateParmDecl *NTTP =
866 if (IdentifierInfo *II = NTTP->getIdentifier())
868 printDeclType(NTTP->getType(), Name, NTTP->isParameterPack());
873 } else if (NTTP->hasDefaultArgument()) {
875 NTTP->getDefaultArgument()->printPretty(Out, nullptr, Policy,
    [all...]
StmtProfile.cpp     [all...]
Expr.cpp     [all...]
ASTContext.cpp 564 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
566 ID.AddBoolean(NTTP->isParameterPack());
567 ID.AddPointer(NTTP->getType().getCanonicalType().getAsOpaquePtr());
568 if (NTTP->isExpandedParameterPack()) {
570 ID.AddInteger(NTTP->getNumExpansionTypes());
571 for (unsigned I = 0, N = NTTP->getNumExpansionTypes(); I != N; ++I) {
572 QualType T = NTTP->getExpansionType(I);
613 else if (NonTypeTemplateParmDecl *NTTP
615 QualType T = getCanonicalType(NTTP->getType());
618 if (NTTP->isExpandedParameterPack())
    [all...]
DeclBase.cpp 146 if (const NonTypeTemplateParmDecl *NTTP
148 return NTTP->isParameterPack();
    [all...]
Decl.cpp 249 if (const NonTypeTemplateParmDecl *NTTP =
252 if (!NTTP->isExpandedParameterPack()) {
253 if (!NTTP->getType()->isDependentType()) {
254 LV.merge(getLVForType(*NTTP->getType(), computation));
260 for (unsigned i = 0, n = NTTP->getNumExpansionTypes(); i != n; ++i) {
261 QualType type = NTTP->getExpansionType(i);
    [all...]
ItaniumMangle.cpp     [all...]
  /external/clang/lib/Index/
USRGeneration.cpp 736 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
737 if (NTTP->isParameterPack())
740 VisitType(NTTP->getType());
  /external/clang/tools/libclang/
CIndex.cpp     [all...]

Completed in 347 milliseconds