Home | History | Annotate | Download | only in Parse

Lines Matching defs:Catch

1839 ///  objc-try-catch-statement:
1840 /// @try compound-statement objc-catch-list[opt]
1841 /// @try compound-statement objc-catch-list[opt] @finally compound-statement
1843 /// objc-catch-list:
1844 /// @catch ( parameter-declaration ) compound-statement
1845 /// objc-catch-list @catch ( catch-parameter-declaration ) compound-statement
1846 /// catch-parameter-declaration:
1868 // of an @catch or @finally. We don't want to consume the @ token if this
1878 ConsumeToken(); // consume catch
1909 StmtResult Catch = Actions.ActOnObjCAtCatchStmt(AtCatchFinallyLoc,
1913 if (!Catch.isInvalid())
1914 CatchStmts.push_back(Catch.release());
1918 << "@catch clause";