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

/external/clang/include/clang/AST/
H A DStmtObjC.h73 class ObjCAtCatchStmt : public Stmt { class in namespace:clang
80 ObjCAtCatchStmt(SourceLocation atCatchLoc, SourceLocation rparenloc, function in class:clang::ObjCAtCatchStmt
86 explicit ObjCAtCatchStmt(EmptyShell Empty) : function in class:clang::ObjCAtCatchStmt
115 static bool classof(const ObjCAtCatchStmt *) { return true; }
207 const ObjCAtCatchStmt *getCatchStmt(unsigned I) const {
209 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]);
213 ObjCAtCatchStmt *getCatchStmt(unsigned I) {
215 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]);
219 void setCatchStmt(unsigned I, ObjCAtCatchStmt *S) {

Completed in 157 milliseconds