Home | History | Annotate | Download | only in AST

Lines Matching refs:SubStmt

3447   Stmt *SubStmt;
3453 StmtExpr(CompoundStmt *substmt, QualType T,
3457 SubStmt(substmt), LParenLoc(lp), RParenLoc(rp) { }
3462 CompoundStmt *getSubStmt() { return cast<CompoundStmt>(SubStmt); }
3463 const CompoundStmt *getSubStmt() const { return cast<CompoundStmt>(SubStmt); }
3464 void setSubStmt(CompoundStmt *S) { SubStmt = S; }
3479 child_range children() { return child_range(&SubStmt, &SubStmt+1); }