HomeSort by relevance Sort by last modified time
    Searched refs:TryCatch (Results 1 - 25 of 39) sorted by null

1 2

  /external/libmojo/mojo/edk/js/
mojo_runner_delegate.h 26 gin::TryCatch& try_catch) override;
mojo_runner_delegate.cc 73 gin::TryCatch& try_catch) {
  /art/test/542-inline-trycatch/src/
Main.java 39 private static int $noinline$TryCatch(String str) {
124 val = $noinline$TryCatch("42");
131 val = $noinline$TryCatch("xyz");
144 val = $noinline$TryCatch("42");
151 val = $noinline$TryCatch("xyz");
  /external/v8/tools/
generate-builtins-tests.py 43 def TryCatch(result, string, exception_behavior = ""):
54 TryCatch(result, "%s(%s);" % (full_name, GetVars(result, length)))
59 TryCatch(result,
88 TryCatch(result, call)
  /external/v8/src/inspector/
v8-regex.cc 23 v8::TryCatch tryCatch(isolate);
34 else if (tryCatch.HasCaught())
35 m_errorMessage = toProtocolString(tryCatch.Message()->Get());
54 v8::TryCatch tryCatch(isolate);
injected-script.h 93 const v8::TryCatch&, const String16& groupName, bool generatePreview,
96 v8::MaybeLocal<v8::Value> maybeResultValue, const v8::TryCatch&,
110 const v8::TryCatch& tryCatch() const { return m_tryCatch; }
127 v8::TryCatch m_tryCatch;
java-script-call-frame.cc 92 v8::TryCatch try_catch(m_isolate);
126 v8::TryCatch try_catch(m_isolate);
152 v8::TryCatch try_catch(m_isolate);
v8-function-call.cc 69 v8::TryCatch tryCatch(m_context->GetIsolate());
70 tryCatch.SetVerbose(reportExceptions);
73 hadException = tryCatch.HasCaught();
v8-value-copier.cc 183 v8::TryCatch tryCatch(context->GetIsolate());
193 v8::TryCatch tryCatch(context->GetIsolate());
injected-script.cc 137 v8::TryCatch tryCatch(m_context->isolate());
139 if (tryCatch.HasCaught()) {
141 tryCatch, groupName, generatePreview, exceptionDetails);
336 const v8::TryCatch& tryCatch, const String16& objectGroup,
338 if (!tryCatch.HasCaught()) return Response::InternalError();
339 v8::Local<v8::Message> message = tryCatch.Message();
340 v8::Local<v8::Value> exception = tryCatch.Exception();
380 v8::MaybeLocal<v8::Value> maybeResultValue, const v8::TryCatch& tryCatch
    [all...]
v8-injected-script-host.cc 214 v8::TryCatch tryCatch(isolate);
220 if (tryCatch.HasCaught()) return;
226 if (tryCatch.HasCaught()) {
227 tryCatch.Reset();
236 if (tryCatch.HasCaught()) {
237 tryCatch.Reset();
  /external/pdfium/fxjs/
cfxjse_context.h 53 v8::TryCatch& trycatch);
cfxjse_context.cpp 113 v8::TryCatch& trycatch) {
115 if (trycatch.HasCaught()) {
116 v8::Local<v8::Value> hException = trycatch.Exception();
117 v8::Local<v8::Message> hMessage = trycatch.Message();
209 v8::TryCatch trycatch(m_pIsolate);
214 if (!trycatch.HasCaught()) {
216 if (!trycatch.HasCaught()) {
224 FXJSE_CreateReturnValue(m_pIsolate, trycatch));
    [all...]
  /external/skia/experimental/SkV8Example/
Global.h 57 void reportException(v8::TryCatch* tryCatch);
JsContext.cpp 80 v8::TryCatch tryCatch;
92 SkASSERT(tryCatch.HasCaught());
94 fGlobal->reportException(&tryCatch);
96 SkASSERT(!tryCatch.HasCaught());
119 v8::TryCatch try_catch;
Global.cpp 33 void Global::reportException(v8::TryCatch* tryCatch) {
35 v8::String::Utf8Value exception(tryCatch->Exception());
37 v8::Handle<v8::Message> message = tryCatch->Message();
63 v8::String::Utf8Value stackTrace(tryCatch->StackTrace());
145 v8::TryCatch tryCatch;
161 SkASSERT(tryCatch.HasCaught());
163 gGlobal->reportException(&tryCatch);
165 SkASSERT(!tryCatch.HasCaught())
    [all...]
  /external/r8/src/test/examples/trycatch/
TryCatch.java 6 // 'trycatch.dex' is what is run.
8 package trycatch; package
10 class TryCatch {
  /external/v8/src/
isolate.h 283 FIELD_ACCESSOR(v8::TryCatch*, try_catch_handler)
297 v8::TryCatch::JSStackComparableAddress(try_catch_handler()));
352 v8::TryCatch* try_catch_handler_;
600 v8::TryCatch* try_catch_handler() {
757 // Re-set pending message, script and positions reported to the TryCatch
759 void RestorePendingMessageFromTryCatch(v8::TryCatch* handler);
760 // Un-schedule an exception that was caught by a TryCatch handler.
761 void CancelScheduledExceptionFromTryCatch(v8::TryCatch* handler);
804 void RegisterTryCatchHandler(v8::TryCatch* that);
805 void UnregisterTryCatchHandler(v8::TryCatch* that)
    [all...]
execution.cc 228 v8::TryCatch catcher(reinterpret_cast<v8::Isolate*>(isolate));
d8.cc 512 TryCatch try_catch(isolate);
687 TryCatch try_catch(isolate);
743 TryCatch try_catch(isolate);
869 TryCatch try_catch(isolate);
    [all...]
  /external/v8/samples/
shell.cc 60 void ReportException(v8::Isolate* isolate, v8::TryCatch* handler);
342 v8::TryCatch try_catch(isolate);
374 void ReportException(v8::Isolate* isolate, v8::TryCatch* try_catch) {
process.cc 217 TryCatch try_catch(GetIsolate());
233 // The TryCatch above is still in effect and will have caught the error.
288 TryCatch try_catch(GetIsolate());
  /external/clang/unittests/Format/
FormatTestJS.cpp 754 TEST_F(FormatTestJS, TryCatch) {
    [all...]
  /external/chromium-libpac/src/
proxy_resolver_v8.cc 395 v8::TryCatch try_catch;
532 v8::TryCatch try_catch;
  /external/v8/include/
v8.h     [all...]

Completed in 188 milliseconds

1 2