Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/ASTMatchers/Dynamic/
H A DParser.h131 virtual std::vector<MatcherCompletion>
162 std::vector<MatcherCompletion>
230 static std::vector<MatcherCompletion>
233 static std::vector<MatcherCompletion>
237 static std::vector<MatcherCompletion>
262 const MatcherCompletion &Completion);
265 std::vector<MatcherCompletion>
276 std::vector<MatcherCompletion> Completions;
H A DRegistry.h57 struct MatcherCompletion { struct
58 MatcherCompletion() = default;
59 MatcherCompletion(StringRef TypedText, StringRef MatcherDecl, in MatcherCompletion() argument
64 bool operator==(const MatcherCompletion &Other) const {
120 static std::vector<MatcherCompletion>
/llvm-project-15.0.7/clang/lib/ASTMatchers/Dynamic/
H A DParser.cpp330 std::vector<MatcherCompletion>
567 addCompletion(ChainCallToken, MatcherCompletion("bind(\"", "bind", 1)); in parseMatcherBuilder()
568 addCompletion(ChainCallToken, MatcherCompletion("with(", "with", 1)); in parseMatcherBuilder()
693 addCompletion(ChainCallToken, MatcherCompletion("bind(\"", "bind", 1)); in parseMatcherExpressionImpl()
739 const MatcherCompletion& Completion) { in addCompletion()
747 std::vector<MatcherCompletion> Parser::getNamedValueCompletions( in getNamedValueCompletions()
749 if (!NamedValues) return std::vector<MatcherCompletion>(); in getNamedValueCompletions()
750 std::vector<MatcherCompletion> Result; in getNamedValueCompletions()
852 std::vector<MatcherCompletion> Parser::RegistrySema::getMatcherCompletions( in getMatcherCompletions()
887 std::vector<MatcherCompletion>
[all …]
H A DRegistry.cpp679 std::vector<MatcherCompletion>
681 std::vector<MatcherCompletion> Completions; in getMatcherCompletions()
/llvm-project-15.0.7/clang/unittests/ASTMatchers/Dynamic/
H A DParserTest.cpp533 std::vector<MatcherCompletion> Comps = Parser::completeExpression(Code, 5); in TEST()
573 std::vector<MatcherCompletion> Comps = in TEST()
H A DRegistryTest.cpp81 typedef std::vector<MatcherCompletion> CompVector;
/llvm-project-15.0.7/clang-tools-extra/clang-query/
H A DQueryParser.cpp209 std::vector<MatcherCompletion> Comps = Parser::completeExpression( in completeMatcherExpression()