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

  /external/clang/lib/AST/
DeclTemplate.cpp 43 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(P))
44 if (NTTP->getType()->containsUnexpandedParameterPack())
70 if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(P))
71 if (NTTP->isExpandedParameterPack()) {
72 NumRequiredArgs += NTTP->getNumExpansionTypes();
82 } else if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(P)) {
83 if (NTTP->hasDefaultArgument())
102 else if (const NonTypeTemplateParmDecl *NTTP
104 return NTTP->getDepth();
213 } else if (auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(Param))
    [all...]
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp 290 Sema &S, NonTypeTemplateParmDecl *NTTP, const llvm::APSInt &Value,
293 assert(NTTP->getDepth() == 0 &&
299 Deduced[NTTP->getIndex()],
302 Info.Param = NTTP;
303 Info.FirstArg = Deduced[NTTP->getIndex()];
308 Deduced[NTTP->getIndex()] = Result;
318 NonTypeTemplateParmDecl *NTTP,
322 assert(NTTP->getDepth() == 0 &&
329 Deduced[NTTP->getIndex()],
333 Info.Param = NTTP;
    [all...]
SemaTemplate.cpp     [all...]

Completed in 196 milliseconds