Home
last modified time | relevance | path

Searched refs:HasCaught (Results 1 – 19 of 19) sorted by relevance

/external/pdfium/fxjs/xfa/
Dcfxjse_context.cpp61 if (!trycatch->HasCaught()) in CreateReturnValue()
271 ASSERT(!trycatch.HasCaught()); in ExecuteScript()
274 ASSERT(!trycatch.HasCaught()); in ExecuteScript()
297 ASSERT(!trycatch.HasCaught()); in ExecuteScript()
303 ASSERT(!trycatch.HasCaught()); in ExecuteScript()
/external/v8/src/inspector/
Dv8-regex.cc34 else if (tryCatch.HasCaught()) in V8Regex()
Dv8-runtime-agent-impl.cc163 if (scope.tryCatch().HasCaught()) { in innerCallFunctionOn()
193 if (!awaitPromise || scope.tryCatch().HasCaught()) { in innerCallFunctionOn()
310 if (!await || scope.tryCatch().HasCaught()) { in evaluate()
512 if (scope.tryCatch().HasCaught()) { in compileScript()
596 if (!awaitPromise.fromMaybe(false) || scope.tryCatch().HasCaught()) { in runScript()
Dv8-console-message.cc165 if (m_tryCatch.HasCaught()) return false; in append()
171 if (m_tryCatch.HasCaught()) return false; in append()
179 if (m_tryCatch.HasCaught()) return String16(); in toString()
Dcustom-preview.cc22 DCHECK(tryCatch.HasCaught()); in reportError()
Dinjected-script.cc774 if (!tryCatch.HasCaught()) return Response::InternalError(); in createExceptionDetails()
826 if (!tryCatch.HasCaught()) { in wrapEvaluateResult()
Dv8-console.cc640 if (tryCatch.HasCaught()) { in queryObjectsCallback()
Dv8-debugger-agent-impl.cc1323 scope.tryCatch().HasCaught()) { in setVariableValue()
Dvalue-mirror.cc1345 if (tryCatch.HasCaught()) tryCatch.Reset(); in doesAttributeHaveObservableSideEffectOnGet()
/external/v8/samples/
Dshell.cc328 assert(try_catch.HasCaught()); in ExecuteString()
334 assert(!try_catch.HasCaught()); in ExecuteString()
/external/v8/src/d8/
Dd8.cc683 DCHECK(try_catch.HasCaught()); in ExecuteString()
687 if (try_catch.HasCaught()) success = false; in ExecuteString()
1036 CHECK(try_catch.HasCaught()); in DoHostImportModuleDynamically()
1051 DCHECK(try_catch.HasCaught()); in DoHostImportModuleDynamically()
1080 DCHECK(!try_catch.HasCaught()); in DoHostImportModuleDynamically()
1104 CHECK(try_catch.HasCaught()); in ExecuteModule()
1118 DCHECK(try_catch.HasCaught()); in ExecuteModule()
1136 if (!try_catch.HasCaught()) { in ExecuteModule()
1146 DCHECK(!try_catch.HasCaught()); in ExecuteModule()
1368 DCHECK(!try_catch.HasCaught()); in CreateRealm()
[all …]
Dasync-hooks-wrapper.cc233 DCHECK(try_catch.HasCaught()); in PromiseHookDispatch()
/external/v8/src/execution/
Dexecution.cc437 DCHECK(catcher.HasCaught()); in InvokeWithTryCatch()
Disolate.cc2067 DCHECK(handler->HasCaught()); in ThrowInternal()
/external/chromium-libpac/src/
Dproxy_resolver_v8.cc523 if (function->IsEmpty() || try_catch.HasCaught()) { in GetFindProxyForURL()
/external/v8/src/snapshot/
Dsnapshot.cc637 CHECK(!try_catch.HasCaught()); in RunExtraCode()
/external/v8/src/debug/
Dliveedit.cc771 DCHECK(try_catch.HasCaught()); in ParseScript()
/external/v8/src/api/
Dapi.cc2755 if (HasCaught() && capture_message_) { in ~TryCatch()
2768 if (HasCaught() && isolate_->has_scheduled_exception()) { in ~TryCatch()
2784 bool v8::TryCatch::HasCaught() const { in HasCaught() function in v8::v8::TryCatch
2794 if (!HasCaught()) return v8::Local<v8::Value>(); in ReThrow()
2800 if (HasCaught()) { in Exception()
2828 if (!HasCaught()) return v8::Local<Value>(); in StackTrace()
2835 if (HasCaught() && !message.IsTheHole(isolate_)) { in Message()
2843 if (!rethrow_ && HasCaught() && isolate_->has_scheduled_exception()) { in Reset()
/external/v8/include/
Dv8.h10211 bool HasCaught() const;