Home | History | Annotate | Download | only in src

Lines Matching refs:try_catch

512   TryCatch try_catch(isolate);
513 try_catch.SetVerbose(true);
525 if (report_exceptions) ReportException(isolate, &try_catch);
534 DCHECK(try_catch.HasCaught());
536 if (report_exceptions) ReportException(isolate, &try_catch);
539 DCHECK(!try_catch.HasCaught());
687 TryCatch try_catch(isolate);
688 try_catch.SetVerbose(true);
702 ReportException(isolate, &try_catch);
743 TryCatch try_catch(isolate);
744 try_catch.SetVerbose(true);
753 DCHECK(try_catch.HasCaught());
755 ReportException(isolate, &try_catch);
758 DCHECK(!try_catch.HasCaught());
869 TryCatch try_catch(isolate);
885 DCHECK(try_catch.HasCaught());
886 try_catch.ReThrow();
1015 v8::TryCatch try_catch(args.GetIsolate());
1024 try_catch.ReThrow();
1253 void Shell::ReportException(Isolate* isolate, v8::TryCatch* try_catch) {
1266 v8::String::Utf8Value exception(try_catch->Exception());
1268 Local<Message> message = try_catch->Message();
1303 if (try_catch->StackTrace(context).ToLocal(&stack_trace_string) &&
1436 v8::TryCatch try_catch(isolate);
1984 v8::TryCatch try_catch(isolate_);
1989 if (try_catch.HasCaught()) {
1990 Local<Object> exception = Local<Object>::Cast(try_catch.Exception());
2351 v8::TryCatch try_catch(isolate);
2358 if (try_catch.HasCaught()) {
2359 Shell::ReportException(isolate, &try_catch);