Home
last modified time | relevance | path

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

/llvm-project/clang/include/clang/ASTMatchers/Dynamic/
H A DParser.h105 virtual ASTNodeKind nodeMatcherType(MatcherCtor) const = 0;
155 ASTNodeKind nodeMatcherType(MatcherCtor) const override;
H A DRegistry.h86 static ASTNodeKind nodeMatcherType(MatcherCtor);
/llvm-project/clang/unittests/ASTMatchers/Dynamic/
H A DRegistryTest.cpp546 …EXPECT_TRUE(Registry::nodeMatcherType(*lookupMatcherCtor("callExpr")).isSame(ASTNodeKind::getFromN… in TEST_F()
547 EXPECT_TRUE(Registry::nodeMatcherType(*lookupMatcherCtor("has")).isNone()); in TEST_F()
548 EXPECT_TRUE(Registry::nodeMatcherType(*lookupMatcherCtor("allOf")).isNone()); in TEST_F()
H A DParserTest.cpp37 ASTNodeKind nodeMatcherType(MatcherCtor) const override { return {}; } in nodeMatcherType() function in clang::ast_matchers::dynamic::__anon417b69980111::MockSema
/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DParser.cpp528 ASTNodeKind NK = S->nodeMatcherType(*MappedMatcher); in parseMatcherBuilder()
859 ASTNodeKind Parser::RegistrySema::nodeMatcherType(MatcherCtor Ctor) const { in nodeMatcherType() function in clang::ast_matchers::dynamic::Parser::RegistrySema
860 return Registry::nodeMatcherType(Ctor); in nodeMatcherType()
H A DMarshallers.h312 virtual ASTNodeKind nodeMatcherType() const { return ASTNodeKind(); }
579 ASTNodeKind nodeMatcherType() const override { return RetKinds[0]; }
616 ASTNodeKind nodeMatcherType() const override { return DerivedKind; }
H A DRegistry.cpp624 ASTNodeKind Registry::nodeMatcherType(MatcherCtor Ctor) { in MatcherDescriptorPtr()
625 return Ctor->nodeMatcherType();
619 ASTNodeKind Registry::nodeMatcherType(MatcherCtor Ctor) { nodeMatcherType() function in clang::ast_matchers::dynamic::Registry