Searched defs:ObjCAtCatchStmt (Results 1 - 1 of 1) sorted by relevance

/external/clang/include/clang/AST/
H A DStmtObjC.h74 class ObjCAtCatchStmt : public Stmt { class in namespace:clang
81 ObjCAtCatchStmt(SourceLocation atCatchLoc, SourceLocation rparenloc, function in class:clang::ObjCAtCatchStmt
87 explicit ObjCAtCatchStmt(EmptyShell Empty) : function in class:clang::ObjCAtCatchStmt
206 const ObjCAtCatchStmt *getCatchStmt(unsigned I) const {
208 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]);
212 ObjCAtCatchStmt *getCatchStmt(unsigned I) {
214 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]);
218 void setCatchStmt(unsigned I, ObjCAtCatchStmt *S) {

Completed in 182 milliseconds