Home
last modified time | relevance | path

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

/external/clang/unittests/AST/
DASTContextParentMapTest.cpp38 ifStmt(hasParent(compoundStmt())))); in TEST()
80 compoundStmt(allOf( 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.cpp2847 EXPECT_TRUE(notMatches("void f();", compoundStmt())); in TEST()
2848 EXPECT_TRUE(matches("void f() {}", compoundStmt())); in TEST()
2849 EXPECT_TRUE(matches("void f() {{}}", compoundStmt())); in TEST()
2856 compoundStmt())); in TEST()
2858 compoundStmt())); in TEST()
2863 forStmt(hasBody(compoundStmt())))); in TEST()
2865 forStmt(hasBody(compoundStmt())))); in TEST()
2867 whileStmt(hasBody(compoundStmt())))); in TEST()
2869 doStmt(hasBody(compoundStmt())))); in TEST()
2871 cxxForRangeStmt(hasBody(compoundStmt())))); in TEST()
[all …]
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp121 REGISTER_MATCHER(compoundStmt); in RegistryMaps()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1406 const internal::VariadicDynCastAllOfMatcher<Stmt, CompoundStmt> compoundStmt; variable