/external/v8/tools/ |
D | generate-builtins-tests.py | 43 def TryCatch(result, string, exception_behavior = ""): function 54 TryCatch(result, "%s(%s);" % (full_name, GetVars(result, length))) 59 TryCatch(result, 88 TryCatch(result, call)
|
/external/v8/test/cctest/ |
D | test-thread-termination.cc | 64 v8::TryCatch try_catch(args.GetIsolate()); in DoLoop() 91 v8::TryCatch try_catch(args.GetIsolate()); in DoLoopNoCall() 227 v8::TryCatch try_catch(args.GetIsolate()); in LoopGetProperty() 285 v8::TryCatch try_catch(args.GetIsolate()); in ReenterAfterTermination() 340 v8::TryCatch try_catch(args.GetIsolate()); in DoLoopCancelTerminate() 449 v8::TryCatch try_catch(isolate); in TEST() 528 v8::TryCatch try_catch(isolate); in TEST() 548 v8::TryCatch try_catch(isolate); in TEST()
|
D | test-api.cc | 79 using ::v8::TryCatch; 203 v8::TryCatch try_catch(isolate); in TestSignature() 731 v8::TryCatch try_catch(isolate); in THREADED_TEST() 741 v8::TryCatch try_catch(isolate); in THREADED_TEST() 4565 v8::TryCatch try_catch(env->GetIsolate()); in THREADED_TEST() 4578 v8::TryCatch try_catch(isolate); in TEST() 5033 TryCatch try_catch(context->GetIsolate()); in THREADED_TEST() 5505 static void CheckUncle(v8::TryCatch* try_catch) { in CheckUncle() 5524 v8::TryCatch try_catch(isolate); in THREADED_TEST() 5571 v8::TryCatch try_catch(args.GetIsolate()); in CCatcher() [all …]
|
D | test-js-arm64-variables.cc | 58 using ::v8::TryCatch;
|
D | test-accessors.cc | 630 v8::TryCatch try_catch(isolate); in THREADED_TEST() 731 v8::TryCatch try_catch(isolate); in TEST() 741 v8::TryCatch try_catch(isolate); in TEST() 760 v8::TryCatch try_catch(isolate); in TEST() 772 v8::TryCatch try_catch(isolate); in TEST()
|
D | test-global-object.cc | 43 v8::TryCatch try_catch(CcTest::isolate()); in TEST()
|
D | test-javascript-arm64.cc | 56 using ::v8::TryCatch;
|
/external/skia/experimental/SkV8Example/ |
D | Global.cpp | 33 void Global::reportException(v8::TryCatch* tryCatch) { in reportException() 145 v8::TryCatch tryCatch; in TimeOutProc() 221 v8::TryCatch tryCatch; in parseScript()
|
D | JsContext.cpp | 80 v8::TryCatch tryCatch; in onDraw() 119 v8::TryCatch try_catch; in initialize()
|
D | Global.h | 57 void reportException(v8::TryCatch* tryCatch);
|
/external/v8/src/ |
D | isolate.h | 253 FIELD_ACCESSOR(v8::TryCatch*, try_catch_handler) in FIELD_ACCESSOR() argument 267 v8::TryCatch::JSStackComparableAddress(try_catch_handler())); in FIELD_ACCESSOR() 322 v8::TryCatch* try_catch_handler_; 571 v8::TryCatch* try_catch_handler() { in THREAD_LOCAL_TOP_ADDRESS() 721 void RestorePendingMessageFromTryCatch(v8::TryCatch* handler); 723 void CancelScheduledExceptionFromTryCatch(v8::TryCatch* handler); 763 void RegisterTryCatchHandler(v8::TryCatch* that); 764 void UnregisterTryCatchHandler(v8::TryCatch* that);
|
D | messages.cc | 95 v8::TryCatch catcher(reinterpret_cast<v8::Isolate*>(isolate)); in ReportMessage() 129 v8::TryCatch try_catch(reinterpret_cast<v8::Isolate*>(isolate)); in ReportMessage()
|
D | isolate.cc | 209 for (v8::TryCatch* block = thread->try_catch_handler(); in Iterate() 261 void Isolate::RegisterTryCatchHandler(v8::TryCatch* that) { in RegisterTryCatchHandler() 266 void Isolate::UnregisterTryCatchHandler(v8::TryCatch* that) { in UnregisterTryCatchHandler() 1232 void Isolate::RestorePendingMessageFromTryCatch(v8::TryCatch* handler) { in RestorePendingMessageFromTryCatch() 1243 void Isolate::CancelScheduledExceptionFromTryCatch(v8::TryCatch* handler) { in CancelScheduledExceptionFromTryCatch() 2063 v8::TryCatch* handler = try_catch_handler(); in PropagatePendingExceptionToExternalTryCatch()
|
D | api.cc | 331 TryCatch try_catch(isolate); in RunExtraCode() 2111 v8::TryCatch::TryCatch() in TryCatch() function in v8::v8::TryCatch 2128 v8::TryCatch::TryCatch(v8::Isolate* isolate) in TryCatch() function in v8::v8::TryCatch 2145 v8::TryCatch::~TryCatch() { in ~TryCatch() 2175 bool v8::TryCatch::HasCaught() const { in HasCaught() 2180 bool v8::TryCatch::CanContinue() const { in CanContinue() 2185 bool v8::TryCatch::HasTerminated() const { in HasTerminated() 2190 v8::Local<v8::Value> v8::TryCatch::ReThrow() { in ReThrow() 2197 v8::Local<Value> v8::TryCatch::Exception() const { in Exception() 2208 MaybeLocal<Value> v8::TryCatch::StackTrace(Local<Context> context) const { in StackTrace() [all …]
|
D | d8.h | 341 static void ReportException(Isolate* isolate, TryCatch* try_catch);
|
D | d8.cc | 377 TryCatch try_catch(isolate); in ExecuteString() 417 v8::TryCatch try_catch(isolate); in ExecuteString() 547 TryCatch try_catch(isolate); in RealmCreate() 658 v8::TryCatch try_catch(args.GetIsolate()); in Write() 908 void Shell::ReportException(Isolate* isolate, v8::TryCatch* try_catch) { in ReportException()
|
/external/pdfium/xfa/src/fxjse/src/ |
D | context.h | 40 v8::TryCatch& trycatch);
|
D | context.cpp | 71 v8::TryCatch& trycatch) { in FXJSE_CreateReturnValue() 195 v8::TryCatch trycatch; in ExecuteScript()
|
/external/v8/test/cctest/compiler/ |
D | function-tester.h | 74 TryCatch try_catch(reinterpret_cast<v8::Isolate*>(isolate)); in CheckThrows() 84 TryCatch try_catch(reinterpret_cast<v8::Isolate*>(isolate)); in CheckThrowsReturnMessage()
|
/external/v8/samples/ |
D | shell.cc | 60 void ReportException(v8::Isolate* isolate, v8::TryCatch* handler); 352 v8::TryCatch try_catch(isolate); in ExecuteString() 384 void ReportException(v8::Isolate* isolate, v8::TryCatch* try_catch) { in ReportException()
|
D | process.cc | 228 TryCatch try_catch(GetIsolate()); in ExecuteScript() 299 TryCatch try_catch(GetIsolate()); in Process()
|
/external/v8/src/runtime/ |
D | runtime-observe.cc | 61 v8::TryCatch catcher(reinterpret_cast<v8::Isolate*>(isolate)); in RUNTIME_FUNCTION()
|
/external/chromium-libpac/src/ |
D | proxy_resolver_v8.cc | 395 v8::TryCatch try_catch; in ResolveProxy() 532 v8::TryCatch try_catch; in RunScript()
|
/external/clang/unittests/Format/ |
D | FormatTestJS.cpp | 575 TEST_F(FormatTestJS, TryCatch) { in TEST_F() argument
|
/external/v8/src/full-codegen/ |
D | full-codegen.h | 204 class TryCatch : public NestedStatement { 208 explicit TryCatch(FullCodeGenerator* codegen) : NestedStatement(codegen) {} in TryCatch() function
|