Home
last modified time | relevance | path

Searched refs:exception_obj (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/execution/
Disolate-inl.h41 void Isolate::set_pending_exception(Object exception_obj) { in set_pending_exception() argument
42 DCHECK(!exception_obj.IsException(this)); in set_pending_exception()
43 thread_local_top()->pending_exception_ = exception_obj; in set_pending_exception()
Disolate.cc2341 Object exception_obj = pending_exception(); in ThrowInternal() local
2355 if (!is_catchable_by_javascript(exception_obj)) return; in ThrowInternal()
2361 if (IsExternalHandlerOnTop(exception_obj)) { in ThrowInternal()
2366 should_report_exception = !IsJavaScriptHandlerOnTop(exception_obj); in ThrowInternal()
2373 Handle<Object> exception(exception_obj, this); in ThrowInternal()
Disolate.h657 inline void set_pending_exception(Object exception_obj);
/external/v8/src/d8/
Dd8.cc1961 Local<v8::Value> exception_obj) { in ReportException() argument
1974 v8::String::Utf8Value exception(isolate, exception_obj); in ReportException()
2012 if (v8::TryCatch::StackTrace(context, exception_obj) in ReportException()