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
205 const ObjCAtCatchStmt *getCatchStmt(unsigned I) const {
207 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]);
211 ObjCAtCatchStmt *getCatchStmt(unsigned I) {
213 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]);
217 void setCatchStmt(unsigned I, ObjCAtCatchStmt *S) {

Completed in 36 milliseconds