Home
last modified time | relevance | path

Searched refs:TTPT (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/clang-tools-extra/clangd/
DDumpAST.cpp266 if (const auto *TTPT = dyn_cast<TemplateTypeParmType>(TL.getTypePtr())) in getDetail() local
267 return getDetail(TTPT->getDecl()); in getDetail()
DFindTarget.cpp618 void VisitTemplateTypeParmType(const TemplateTypeParmType *TTPT) { in add()
619 Outer.add(TTPT->getDecl(), Flags); in add()
/external/llvm-project/clang/lib/AST/
DJSONNodeDumper.cpp645 const TemplateTypeParmType *TTPT) { in VisitTemplateTypeParmType() argument
646 JOS.attribute("depth", TTPT->getDepth()); in VisitTemplateTypeParmType()
647 JOS.attribute("index", TTPT->getIndex()); in VisitTemplateTypeParmType()
648 attributeOnlyIfTrue("isPack", TTPT->isParameterPack()); in VisitTemplateTypeParmType()
649 JOS.attribute("decl", createBareDeclRef(TTPT->getDecl())); in VisitTemplateTypeParmType()
DTypePrinter.cpp1834 if (auto *TTPT = Pattern->getAs<TemplateTypeParmType>()) { in isSubstitutedType() local
1835 if (TTPT->getDepth() == Depth && TTPT->getIndex() < Args.size() && in isSubstitutedType()
1836 Args[TTPT->getIndex()].getKind() == TemplateArgument::Type) { in isSubstitutedType()
1838 Args[TTPT->getIndex()].getAsType(), Pattern.getQualifiers()); in isSubstitutedType()
/external/llvm-project/clang/include/clang/AST/
DJSONNodeDumper.h220 void VisitTemplateTypeParmType(const TemplateTypeParmType *TTPT);
/external/llvm-project/clang/lib/Sema/
DSemaTemplateVariadic.cpp305 if (auto *TTPT = Pack.first.dyn_cast<const TemplateTypeParmType *>()) { in DiagnoseUnexpandedParameterPacks() local
307 return TTPD && TTPD->getTypeForDecl() == TTPT; in DiagnoseUnexpandedParameterPacks()
DSemaCodeComplete.cpp5205 } else if (const auto *TTPT = in CodeCompleteMemberReferenceExpr() local
5209 for (const auto &R : ConceptInfo(*TTPT, S).members()) { in CodeCompleteMemberReferenceExpr()
5909 if (const auto *TTPT = in CodeCompleteQualifiedId() local
5911 for (const auto &R : ConceptInfo(*TTPT, S).members()) { in CodeCompleteQualifiedId()