Lines Matching refs:compoundStmt
2155 EXPECT_TRUE(matches("void f() { }", compoundStmt(statementCountIs(0)))); in TEST_P()
2156 EXPECT_TRUE(notMatches("void f() {}", compoundStmt(statementCountIs(1)))); in TEST_P()
2160 EXPECT_TRUE(matches("void f() { 1; }", compoundStmt(statementCountIs(1)))); in TEST_P()
2161 EXPECT_TRUE(notMatches("void f() { 1; }", compoundStmt(statementCountIs(0)))); in TEST_P()
2162 EXPECT_TRUE(notMatches("void f() { 1; }", compoundStmt(statementCountIs(2)))); in TEST_P()
2167 matches("void f() { 1; 2; 3; }", compoundStmt(statementCountIs(3)))); in TEST_P()
2172 compoundStmt(statementCountIs(1)))); in TEST_P()
2174 compoundStmt(statementCountIs(2)))); in TEST_P()
2176 compoundStmt(statementCountIs(3)))); in TEST_P()
2178 compoundStmt(statementCountIs(4)))); in TEST_P()
3529 Source1, ompExecutableDirective(hasStructuredBlock(compoundStmt())))); in TEST_P()