Lines Matching refs:Handler
190 CatchHandler &Handler = Handlers.back();
191 Handler.Variable = CatchDecl;
192 Handler.Body = CatchStmt->getCatchBody();
193 Handler.Block = CGF.createBasicBlock("catch");
197 Handler.TypeInfo = 0; // catch-all
202 Handler.TypeInfo = GetEHType(CatchDecl->getType());
222 CatchHandler &Handler = Handlers[I];
224 CGF.EmitBlock(Handler.Block);
238 bool EndCatchMightThrow = (Handler.Variable == 0);
246 if (const VarDecl *CatchParam = Handler.Variable) {
255 CGF.EmitStmt(Handler.Body);