Searched refs:TTPT (Results 1 – 6 of 6) sorted by relevance
519 if (const auto *TTPT = dyn_cast_or_null<TemplateTypeParmType>(Ty)) { in printEntryName() local520 OS << "unnamed template type parameter " << TTPT->getIndex() << " "; in printEntryName()521 if (TTPT->getDepth() > 0) in printEntryName()522 OS << "(at depth " << TTPT->getDepth() << ") "; in printEntryName()
764 const TemplateTypeParmType *TTPT) { in VisitTemplateTypeParmType() argument765 JOS.attribute("depth", TTPT->getDepth()); in VisitTemplateTypeParmType()766 JOS.attribute("index", TTPT->getIndex()); in VisitTemplateTypeParmType()767 attributeOnlyIfTrue("isPack", TTPT->isParameterPack()); in VisitTemplateTypeParmType()768 JOS.attribute("decl", createBareDeclRef(TTPT->getDecl())); in VisitTemplateTypeParmType()
2172 if (auto *TTPT = Pattern->getAs<TemplateTypeParmType>()) { in isSubstitutedType() local2173 if (TTPT->getDepth() == Depth && TTPT->getIndex() < Args.size() && in isSubstitutedType()2174 Args[TTPT->getIndex()].getKind() == TemplateArgument::Type) { in isSubstitutedType()2176 Args[TTPT->getIndex()].getAsType(), Pattern.getQualifiers()); in isSubstitutedType()
318 if (auto *TTPT = Pack.first.dyn_cast<const TemplateTypeParmType *>()) { in DiagnoseUnexpandedParameterPacks() local320 return TTPD && TTPD->getTypeForDecl() == TTPT; in DiagnoseUnexpandedParameterPacks()
5790 } else if (const auto *TTPT = in CodeCompleteMemberReferenceExpr() local5794 for (const auto &R : ConceptInfo(*TTPT, S).members()) { in CodeCompleteMemberReferenceExpr()6752 if (const auto *TTPT = in CodeCompleteQualifiedId() local6754 for (const auto &R : ConceptInfo(*TTPT, S).members()) { in CodeCompleteQualifiedId()
234 void VisitTemplateTypeParmType(const TemplateTypeParmType *TTPT);