Home | History | Annotate | Download | only in ASTMatchers

Lines Matching defs:compoundStmt

1764 const internal::VariadicDynCastAllOfMatcher<Stmt, CompoundStmt> compoundStmt;
2531 /// \c compoundStmt(hasParent(ifStmt())) matches "{ int x = 43; }".
3729 /// compoundStmt(
3806 /// hasBody(compoundStmt())
3808 /// with compoundStmt()
3822 /// a given matcher. Also matches StmtExprs that have CompoundStmt as children.
3828 /// hasAnySubstatement(compoundStmt())
3830 /// with compoundStmt()
3833 AST_POLYMORPHIC_SUPPORTED_TYPES(CompoundStmt,
3836 const CompoundStmt
3848 /// compoundStmt(statementCountIs(0)))
3851 AST_MATCHER_P(CompoundStmt, statementCountIs, unsigned, N) {