Home | History | Annotate | Download | only in AST

Lines Matching refs:getStmts

170   Stmt **getStmts() { return reinterpret_cast<Stmt **> (this + 1); }
171 const Stmt* const *getStmts() const {
197 const Stmt *getTryBody() const { return getStmts()[0]; }
198 Stmt *getTryBody() { return getStmts()[0]; }
199 void setTryBody(Stmt *S) { getStmts()[0] = S; }
208 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]);
214 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]);
220 getStmts()[I + 1] = S;
228 return cast_or_null<ObjCAtFinallyStmt>(getStmts()[1 + NumCatchStmts]);
234 return cast_or_null<ObjCAtFinallyStmt>(getStmts()[1 + NumCatchStmts]);
238 getStmts()[1 + NumCatchStmts] = S;
249 return child_range(getStmts(),
250 getStmts() + 1 + NumCatchStmts + HasFinally);