Lines Matching refs:Catch
2494 /// objc-try-catch-statement:
2495 /// @try compound-statement objc-catch-list[opt]
2496 /// @try compound-statement objc-catch-list[opt] @finally compound-statement
2498 /// objc-catch-list:
2499 /// @catch ( parameter-declaration ) compound-statement
2500 /// objc-catch-list @catch ( catch-parameter-declaration ) compound-statement
2501 /// catch-parameter-declaration:
2523 // of an @catch or @finally. We don't want to consume the @ token if this
2533 ConsumeToken(); // consume catch
2566 StmtResult Catch = Actions.ActOnObjCAtCatchStmt(AtCatchFinallyLoc,
2570 if (!Catch.isInvalid())
2571 CatchStmts.push_back(Catch.get());
2575 << "@catch clause";