Lines Matching full:catch
73 /// \brief Represents Objective-C's \@catch statement.
152 /// \brief Represents Objective-C's \@try ... \@catch ... \@finally statement.
158 // The number of catch blocks in this statement.
167 /// with the \@try body first, followed by the \@catch statements (if any)
201 /// \brief Retrieve the number of \@catch statements in this try-catch-finally
205 /// \brief Retrieve a \@catch statement.
207 assert(I < NumCatchStmts && "Out-of-bounds @catch index");
211 /// \brief Retrieve a \@catch statement.
213 assert(I < NumCatchStmts && "Out-of-bounds @catch index");
217 /// \brief Set a particular catch statement.
219 assert(I < NumCatchStmts && "Out-of-bounds @catch index");