Home
last modified time | relevance | path

Searched refs:MatcherDecl (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/ASTMatchers/Dynamic/
H A DRegistry.h59 MatcherCompletion(StringRef TypedText, StringRef MatcherDecl, in MatcherCompletion()
61 : TypedText(TypedText), MatcherDecl(MatcherDecl), in MatcherCompletion()
65 return TypedText == Other.TypedText && MatcherDecl == Other.MatcherDecl;
72 std::string MatcherDecl; member
/llvm-project-15.0.7/clang/unittests/ASTMatchers/Dynamic/
H A DParserTest.cpp537 Comps[0].MatcherDecl); in TEST()
543 EXPECT_EQ("bind", Comps[0].MatcherDecl); in TEST()
552 Comps[0].MatcherDecl); in TEST()
558 EXPECT_EQ("bind", Comps[0].MatcherDecl); in TEST()
560 EXPECT_EQ("with", Comps[1].MatcherDecl); in TEST()
566 EXPECT_EQ("ifStmt", Comps[0].MatcherDecl); in TEST()
577 EXPECT_EQ("String nameX", Comps[0].MatcherDecl); in TEST()
592 Comps[0].MatcherDecl); in TEST()
595 EXPECT_EQ("Matcher<Decl> hasParamA", Comps[1].MatcherDecl); in TEST()
601 Comps[2].MatcherDecl); in TEST()
H A DRegistryTest.cpp115 StringRef MatcherDecl = StringRef()) { in hasCompletion() argument
119 (MatcherDecl.empty() || I->MatcherDecl == MatcherDecl)) { in hasCompletion()
/llvm-project-15.0.7/clang-tools-extra/clang-query/
H A DQueryParser.cpp212 Completions.push_back(LineEditor::Completion(I->TypedText, I->MatcherDecl)); in completeMatcherExpression()
/llvm-project-15.0.7/clang/lib/ASTMatchers/Dynamic/
H A DParser.cpp743 Completion.MatcherDecl, Completion.Specificity); in addCompletion()