Searched refs:SubstTemplateTypeParmType (Results 1 – 25 of 44) sorted by relevance
12
/external/llvm-project/clang-tools-extra/clang-tidy/hicpp/ |
D | ExceptionBaseclassCheck.cpp | 51 Result.Nodes.getNodeAs<SubstTemplateTypeParmType>("templ_type")) in check()
|
/external/clang/lib/Tooling/Core/ |
D | QualTypeNames.cpp | 420 while (isa<SubstTemplateTypeParmType>(QT.getTypePtr())) { in getFullyQualifiedType() 424 QT = dyn_cast<SubstTemplateTypeParmType>(QT.getTypePtr())->desugar(); in getFullyQualifiedType()
|
/external/llvm-project/clang/lib/AST/ |
D | QualTypeNames.cpp | 417 while (isa<SubstTemplateTypeParmType>(QT.getTypePtr())) { in getFullyQualifiedType() 421 QT = cast<SubstTemplateTypeParmType>(QT.getTypePtr())->desugar(); in getFullyQualifiedType()
|
D | ASTImporterLookupTable.cpp | 63 dyn_cast<SubstTemplateTypeParmType>(Ty)) { in VisitFriendDecl()
|
D | TypePrinter.cpp | 203 if (const auto *Subst = dyn_cast<SubstTemplateTypeParmType>(T)) in canPrefixQualifiers() 288 if (const auto *Subst = dyn_cast<SubstTemplateTypeParmType>(Split.Ty)) in printBefore() 1383 const SubstTemplateTypeParmType *T, in printSubstTemplateTypeParmBefore() 1390 const SubstTemplateTypeParmType *T, in printSubstTemplateTypeParmAfter()
|
D | ASTStructuralEquivalence.cpp | 1023 const auto *Subst1 = cast<SubstTemplateTypeParmType>(T1); in IsStructurallyEquivalent() 1024 const auto *Subst2 = cast<SubstTemplateTypeParmType>(T2); in IsStructurallyEquivalent()
|
D | ASTDiagnostic.cpp | 50 if (const SubstTemplateTypeParmType *ST = in Desugar() 51 dyn_cast<SubstTemplateTypeParmType>(Ty)) { in Desugar()
|
D | ODRHash.cpp | 1002 void VisitSubstTemplateTypeParmType(const SubstTemplateTypeParmType *T) { in VisitSubstTemplateTypeParmType()
|
/external/clang/lib/AST/ |
D | TypePrinter.cpp | 173 if (const SubstTemplateTypeParmType *Subst in canPrefixQualifiers() 174 = dyn_cast<SubstTemplateTypeParmType>(T)) in canPrefixQualifiers() 244 if (const SubstTemplateTypeParmType *Subst = in printBefore() 245 dyn_cast<SubstTemplateTypeParmType>(Split.Ty)) in printBefore() 1042 const SubstTemplateTypeParmType *T, in printSubstTemplateTypeParmBefore() 1048 const SubstTemplateTypeParmType *T, in printSubstTemplateTypeParmAfter()
|
D | ASTDiagnostic.cpp | 47 if (const SubstTemplateTypeParmType *ST = in Desugar() 48 dyn_cast<SubstTemplateTypeParmType>(Ty)) { in Desugar()
|
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
D | MismatchedIteratorChecker.cpp | 178 Param->getType()->getAs<SubstTemplateTypeParmType>(); in checkPreCall()
|
/external/llvm-project/clang/include/clang/Basic/ |
D | TypeNodes.td | 94 def SubstTemplateTypeParmType : TypeNode<Type>, NeverCanonical;
|
/external/llvm-project/clang/include/clang/AST/ |
D | ASTNodeTraverser.h | 364 void VisitSubstTemplateTypeParmType(const SubstTemplateTypeParmType *T) { in VisitSubstTemplateTypeParmType()
|
D | TypeProperties.td | 700 let Class = SubstTemplateTypeParmType in {
|
D | RecursiveASTVisitor.h | 1004 DEF_TRAVERSE_TYPE(SubstTemplateTypeParmType, { 1281 DEF_TRAVERSE_TYPELOC(SubstTemplateTypeParmType, {
|
D | TypeLoc.h | 836 SubstTemplateTypeParmType> {
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaCXXScopeSpec.cpp | 747 } else if (isa<SubstTemplateTypeParmType>(T)) { in BuildCXXNestedNameSpecifier()
|
/external/clang/lib/Sema/ |
D | SemaCXXScopeSpec.cpp | 743 } else if (isa<SubstTemplateTypeParmType>(T)) { in BuildCXXNestedNameSpecifier()
|
/external/llvm-project/clang/lib/ASTMatchers/ |
D | ASTMatchersInternal.cpp | 1022 const AstTypeMatcher<SubstTemplateTypeParmType> substTemplateTypeParmType;
|
/external/clang/include/clang/AST/ |
D | RecursiveASTVisitor.h | 1005 DEF_TRAVERSE_TYPE(SubstTemplateTypeParmType, {}) 1226 DEF_TRAVERSE_TYPELOC(SubstTemplateTypeParmType, {})
|
D | TypeLoc.h | 700 SubstTemplateTypeParmType> {
|
D | ASTContext.h | 117 mutable llvm::FoldingSet<SubstTemplateTypeParmType>
|
/external/llvm-project/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 6639 extern const AstTypeMatcher<SubstTemplateTypeParmType> 6656 AST_POLYMORPHIC_SUPPORTED_TYPES(SubstTemplateTypeParmType));
|
D | ASTMatchersInternal.h | 972 if (const auto *S = dyn_cast<SubstTemplateTypeParmType>(EffectiveType)) { in matchesSpecialized()
|
/external/llvm-project/clang/unittests/ASTMatchers/ |
D | ASTMatchersNodeTest.cpp | 1843 TEST_P(ASTMatchersTest, SubstTemplateTypeParmType) { in TEST_P() argument
|
12