Home | History | Annotate | Download | only in ASTMatchers

Lines Matching refs:Arg

1745   StatementMatcher Arg = defaultArgExpr();
1747 EXPECT_TRUE(matches("void x(int, int = 0) { int y; x(y); }", Arg));
1749 matches("class X { void x(int, int = 0) { int y; x(y); } };", Arg));
1750 EXPECT_TRUE(notMatches("void x(int, int = 0) { int y; x(y, 0); }", Arg));