Searched refs:Call1Arg (Results 1 – 1 of 1) sorted by relevance
794 StatementMatcher Call1Arg = callExpr(argumentCountIs(1)); in TEST() local796 EXPECT_TRUE(matches("void x(int) { x(0); }", Call1Arg)); in TEST()797 EXPECT_TRUE(matches("class X { void x(int) { x(0); } };", Call1Arg)); in TEST()798 EXPECT_TRUE(notMatches("void x(int, int) { x(0, 0); }", Call1Arg)); in TEST()