Home | History | Annotate | Download | only in Sema

Lines Matching defs:NTTP

287                               NonTypeTemplateParmDecl *NTTP,
292 assert(NTTP->getDepth() == 0 &&
297 Deduced[NTTP->getIndex()],
300 Info.Param = NTTP;
301 Info.FirstArg = Deduced[NTTP->getIndex()];
306 Deduced[NTTP->getIndex()] = Result;
316 NonTypeTemplateParmDecl *NTTP,
320 assert(NTTP->getDepth() == 0 &&
327 Deduced[NTTP->getIndex()],
331 Info.Param = NTTP;
332 Info.FirstArg = Deduced[NTTP->getIndex()];
337 Deduced[NTTP->getIndex()] = Result;
347 NonTypeTemplateParmDecl *NTTP,
351 assert(NTTP->getDepth() == 0 &&
356 Deduced[NTTP->getIndex()],
359 Info.Param = NTTP;
360 Info.FirstArg = Deduced[NTTP->getIndex()];
365 Deduced[NTTP->getIndex()] = Result;
518 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(ND))
519 return std::make_pair(NTTP->getDepth(), NTTP->getIndex());
540 else if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(D))
541 return TemplateParameter(NTTP);
1225 NonTypeTemplateParmDecl *NTTP
1227 if (!NTTP)
1232 assert(NTTP->getDepth() == 0 &&
1237 return DeduceNonTypeTemplateArgument(S, NTTP, Size,
1245 return DeduceNonTypeTemplateArgument(S, NTTP,
1486 NonTypeTemplateParmDecl *NTTP
1488 if (!NTTP)
1493 return DeduceNonTypeTemplateArgument(S, NTTP, ArgSize, S.Context.IntTy,
1509 NonTypeTemplateParmDecl *NTTP
1511 if (!NTTP)
1514 return DeduceNonTypeTemplateArgument(S, NTTP, VectorArg->getSizeExpr(),
1606 if (NonTypeTemplateParmDecl *NTTP
1609 return DeduceNonTypeTemplateArgument(S, NTTP,
1615 return DeduceNonTypeTemplateArgument(S, NTTP, Arg.getAsExpr(),
1618 return DeduceNonTypeTemplateArgument(S, NTTP, Arg.getAsDecl(),
2048 if (NonTypeTemplateParmDecl *NTTP
2050 NTTPType = NTTP->getType();
2056 NTTP->getLocation(),
2057 NTTP->getDeclName());
2492 if (NonTypeTemplateParmDecl *NTTP
2494 NTTPType = NTTP->getType();
2500 NTTP->getLocation(),
2501 NTTP->getDeclName());
3952 const NonTypeTemplateParmDecl *NTTP
3954 if (!NTTP)
3957 if (NTTP->getDepth() == Depth)
3958 Used[NTTP->getIndex()] = true;