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