Home
last modified time | relevance | path

Searched refs:compoundStmt (Results 1 – 5 of 5) sorted by relevance

/external/clang/unittests/AST/
DASTContextParentMapTest.cpp37 ifStmt(hasParent(compoundStmt())))); in TEST()
65 compoundStmt( in TEST()
DStmtPrinterTest.cpp119 has(compoundStmt(has(stmt().bind("id"))))), in PrintedStmtCXX98Matches()
145 has(compoundStmt(has(stmt().bind("id"))))), in PrintedStmtMSMatches()
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp2608 EXPECT_TRUE(notMatches("void f();", compoundStmt())); in TEST()
2609 EXPECT_TRUE(matches("void f() {}", compoundStmt())); in TEST()
2610 EXPECT_TRUE(matches("void f() {{}}", compoundStmt())); in TEST()
2617 compoundStmt())); in TEST()
2619 compoundStmt())); in TEST()
2624 forStmt(hasBody(compoundStmt())))); in TEST()
2626 forStmt(hasBody(compoundStmt())))); in TEST()
2628 whileStmt(hasBody(compoundStmt())))); in TEST()
2630 doStmt(hasBody(compoundStmt())))); in TEST()
2632 forRangeStmt(hasBody(compoundStmt())))); in TEST()
[all …]
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp123 REGISTER_MATCHER(compoundStmt); in RegistryMaps()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1313 const internal::VariadicDynCastAllOfMatcher<Stmt, CompoundStmt> compoundStmt; variable