reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/AST/StmtObjC.h
  209   Stmt *getTryBody() { return getStmts()[0]; }
  210   void setTryBody(Stmt *S) { getStmts()[0] = S; }
  225     return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]);
  231     getStmts()[I + 1] = S;
  245     return cast_or_null<ObjCAtFinallyStmt>(getStmts()[1 + NumCatchStmts]);
  249     getStmts()[1 + NumCatchStmts] = S;
  260     return child_range(getStmts(),
  261                        getStmts() + 1 + NumCatchStmts + HasFinally);
tools/clang/lib/AST/StmtObjC.cpp
   36   Stmt **Stmts = getStmts();