Home
last modified time | relevance | path

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

/aosp_15_r20/external/clang/include/clang/ASTMatchers/Dynamic/
H A DParser.h162 parseMatcherExpression(StringRef MatcherCode, Sema *S,
166 parseMatcherExpression(StringRef MatcherCode, Sema *S, in parseMatcherExpression() function
168 return parseMatcherExpression(MatcherCode, S, nullptr, Error); in parseMatcherExpression()
171 parseMatcherExpression(StringRef MatcherCode, Diagnostics *Error) { in parseMatcherExpression() function
172 return parseMatcherExpression(MatcherCode, nullptr, Error); in parseMatcherExpression()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/clang/ASTMatchers/Dynamic/
DParser.h184 parseMatcherExpression(StringRef &MatcherCode, Sema *S,
187 parseMatcherExpression(StringRef &MatcherCode, Sema *S, Diagnostics *Error) { in parseMatcherExpression() function
188 return parseMatcherExpression(MatcherCode, S, nullptr, Error); in parseMatcherExpression()
191 parseMatcherExpression(StringRef &MatcherCode, Diagnostics *Error) { in parseMatcherExpression() function
192 return parseMatcherExpression(MatcherCode, nullptr, Error); in parseMatcherExpression()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/clang/ASTMatchers/Dynamic/
DParser.h184 parseMatcherExpression(StringRef &MatcherCode, Sema *S,
187 parseMatcherExpression(StringRef &MatcherCode, Sema *S, Diagnostics *Error) { in parseMatcherExpression() function
188 return parseMatcherExpression(MatcherCode, S, nullptr, Error); in parseMatcherExpression()
191 parseMatcherExpression(StringRef &MatcherCode, Diagnostics *Error) { in parseMatcherExpression() function
192 return parseMatcherExpression(MatcherCode, nullptr, Error); in parseMatcherExpression()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/clang/ASTMatchers/Dynamic/
DParser.h184 parseMatcherExpression(StringRef &MatcherCode, Sema *S,
187 parseMatcherExpression(StringRef &MatcherCode, Sema *S, Diagnostics *Error) { in parseMatcherExpression() function
188 return parseMatcherExpression(MatcherCode, S, nullptr, Error); in parseMatcherExpression()
191 parseMatcherExpression(StringRef &MatcherCode, Diagnostics *Error) { in parseMatcherExpression() function
192 return parseMatcherExpression(MatcherCode, nullptr, Error); in parseMatcherExpression()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/clang/ASTMatchers/Dynamic/
DParser.h184 parseMatcherExpression(StringRef &MatcherCode, Sema *S,
187 parseMatcherExpression(StringRef &MatcherCode, Sema *S, Diagnostics *Error) { in parseMatcherExpression() function
188 return parseMatcherExpression(MatcherCode, S, nullptr, Error); in parseMatcherExpression()
191 parseMatcherExpression(StringRef &MatcherCode, Diagnostics *Error) { in parseMatcherExpression() function
192 return parseMatcherExpression(MatcherCode, nullptr, Error); in parseMatcherExpression()
/aosp_15_r20/external/clang/unittests/ASTMatchers/Dynamic/
H A DParserTest.cpp173 llvm::Optional<DynTypedMatcher> VarDecl(Parser::parseMatcherExpression( in TEST()
184 llvm::Optional<DynTypedMatcher> HasParameter(Parser::parseMatcherExpression( in TEST()
195 Parser::parseMatcherExpression( in TEST()
205 EXPECT_TRUE(!Parser::parseMatcherExpression( in TEST()
225 Parser::parseMatcherExpression(Code, &Error); in ParseMatcherWithError()
/aosp_15_r20/external/clang/lib/ASTMatchers/Dynamic/
H A DParser.cpp592 Parser::parseMatcherExpression(StringRef Code, Sema *S, in parseMatcherExpression() function in clang::ast_matchers::dynamic::Parser