Home | History | Annotate | Download | only in ASTMatchers

Lines Matching refs:forStmt

831   EXPECT_TRUE(matches("void f() { for(;;); }", forStmt()));
832 EXPECT_TRUE(matches("void f() { if(true) for(;;); }", forStmt()));
835 forStmt()));
839 EXPECT_TRUE(notMatches("void f() { ; }", forStmt()));
840 EXPECT_TRUE(notMatches("void f() { if(true); }", forStmt()));