Lines Matching defs:Catch
795 // want to merge declarations. Checks after instantiation will catch any
846 // catch an exception of each source type.
1547 // try /*...*/ catch (...) { H } can throw only if H can throw.
1548 // Any other try-catch can throw if any substatement can throw.
1561 // @catch(...) need not be last in Objective-C. Walk backwards until we
1567 const ObjCAtCatchStmt *Catch = TS->getCatchStmt(I - 1);
1568 CT = mergeCanThrow(CT, canThrow(Catch));
1569 // If we reach a @catch(...), no earlier exceptions can escape.
1570 if (Catch->hasEllipsis())
1574 // Didn't find an @catch(...). Exceptions from the @try body can escape.