Lines Matching refs:Matcher
43 template <typename M> TestMatch matchCode(StringRef Code, M Matcher) { in matchCode() argument
51 auto Matches = ast_matchers::match(Matcher, Context); in matchCode()
78 testing::Matcher<StringError> withUnboundNodeMessage() { in withUnboundNodeMessage()
98 auto Matcher = in selectFromAssorted() local
109 return Selector(matchCode(Code, Matcher).Result); in selectFromAssorted()
113 testing::Matcher<StringError> withTypeErrorMessage(const std::string &NodeID) { in withTypeErrorMessage()
137 ast_matchers::internal::Matcher<Stmt> M = callExpr().bind(CallID); in TEST()
156 ast_matchers::internal::Matcher<Stmt> M = callExpr().bind(CallID); in TEST()
260 auto Matcher = callExpr(hasArgument(0, expr().bind("a0")), in TEST() local
263 TestMatch Match = matchCode(Code, Matcher); in TEST()
272 auto Matcher = callExpr(hasArgument(0, expr().bind("a0")), in TEST() local
276 TestMatch Match = matchCode(Code, Matcher); in TEST()
286 auto Matcher = callExpr(hasArgument(0, expr().bind("a0")), in TEST() local
289 TestMatch Match = matchCode(Code, Matcher); in TEST()
298 auto Matcher = callExpr(hasArgument(0, expr().bind("a0")), in TEST() local
301 TestMatch Match = matchCode(Code, Matcher); in TEST()
310 auto Matcher = callExpr(hasArgument(0, expr().bind("a0")), in TEST() local
314 TestMatch Match = matchCode(Code, Matcher); in TEST()
323 auto Matcher = callExpr(hasArgument(0, expr().bind("a0")), in TEST() local
327 TestMatch Match = matchCode(Code, Matcher); in TEST()