Home | History | Annotate | Download | only in AST

Lines Matching refs:NTTP

74     if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
76 ID.AddBoolean(NTTP->isParameterPack());
77 ID.AddPointer(NTTP->getType().getCanonicalType().getAsOpaquePtr());
78 if (NTTP->isExpandedParameterPack()) {
80 ID.AddInteger(NTTP->getNumExpansionTypes());
81 for (unsigned I = 0, N = NTTP->getNumExpansionTypes(); I != N; ++I) {
82 QualType T = NTTP->getExpansionType(I);
123 else if (NonTypeTemplateParmDecl *NTTP
125 QualType T = getCanonicalType(NTTP->getType());
128 if (NTTP->isExpandedParameterPack()) {
131 for (unsigned I = 0, N = NTTP->getNumExpansionTypes(); I != N; ++I) {
132 ExpandedTypes.push_back(getCanonicalType(NTTP->getExpansionType(I)));
140 NTTP->getDepth(),
141 NTTP->getPosition(), 0,
151 NTTP->getDepth(),
152 NTTP->getPosition(), 0,
154 NTTP->isParameterPack(),