Home | History | Annotate | Download | only in Sema

Lines Matching refs:NTTP

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;
364 Info.FirstArg = Deduced[NTTP->getIndex()];
369 Deduced[NTTP->getIndex()] = Result;
379 NonTypeTemplateParmDecl *NTTP,
383 assert(NTTP->getDepth() == 0 &&
387 TemplateArgument New(D, NTTP->getType()->isReferenceType());
390 Deduced[NTTP->getIndex()],
393 Info.Param = NTTP;
394 Info.FirstArg = Deduced[NTTP->getIndex()];
399 Deduced[NTTP->getIndex()] = Result;
557 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(ND))
558 return std::make_pair(NTTP->getDepth(), NTTP->getIndex());
579 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(D))
580 return TemplateParameter(NTTP);
1378 NonTypeTemplateParmDecl *NTTP
1380 if (!NTTP)
1385 assert(NTTP->getDepth() == 0 &&
1390 return DeduceNonTypeTemplateArgument(S, NTTP, Size,
1398 return DeduceNonTypeTemplateArgument(S, NTTP,
1638 NonTypeTemplateParmDecl *NTTP
1640 if (!NTTP)
1645 return DeduceNonTypeTemplateArgument(S, NTTP, ArgSize, S.Context.IntTy,
1660 NonTypeTemplateParmDecl *NTTP
1662 if (!NTTP)
1665 return DeduceNonTypeTemplateArgument(S, NTTP, VectorArg->getSizeExpr(),
1767 if (NonTypeTemplateParmDecl *NTTP
1770 return DeduceNonTypeTemplateArgument(S, NTTP,
1776 return DeduceNonTypeTemplateArgument(S, NTTP, Arg.getAsExpr(),
1779 return DeduceNonTypeTemplateArgument(S, NTTP, Arg.getAsDecl(),
2175 if (NonTypeTemplateParmDecl *NTTP
2177 NTTPType = NTTP->getType();
2183 NTTP->getLocation(),
2184 NTTP->getDeclName());
2343 if (NonTypeTemplateParmDecl *NTTP =
2345 NTTPType = NTTP->getType();
2351 NTTP->getLocation(), NTTP->getDeclName());
2839 if (NonTypeTemplateParmDecl *NTTP
2841 NTTPType = NTTP->getType();
2847 NTTP->getLocation(),
2848 NTTP->getDeclName());
4720 NTTP
4722 if (!NTTP)
4725 if (NTTP->getDepth() == Depth)
4726 Used[NTTP->getIndex()] = true;