HomeSort by relevance Sort by last modified time
    Searched full:trycatch (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/skia/experimental/SkV8Example/
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...]
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;
  /external/pdfium/xfa/src/fxjse/src/
context.cpp 71 v8::TryCatch& trycatch) {
73 if (trycatch.HasCaught()) {
74 v8::Local<v8::Value> hException = trycatch.Exception();
75 v8::Local<v8::Message> hMessage = trycatch.Message();
195 v8::TryCatch trycatch; local
200 if (!trycatch.HasCaught()) {
202 if (!trycatch.HasCaught()) {
211 FXJSE_CreateReturnValue(m_pIsolate, trycatch));
    [all...]
context.h 40 v8::TryCatch& trycatch);
value.cpp 492 v8::TryCatch trycatch; local
495 lpRetValue->ForceSetValue(FXJSE_CreateReturnValue(m_pIsolate, trycatch));
530 if (trycatch.HasCaught()) {
531 hReturnValue = FXJSE_CreateReturnValue(m_pIsolate, trycatch);
  /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/runtime/
runtime-observe.cc 61 v8::TryCatch catcher(reinterpret_cast<v8::Isolate*>(isolate));
64 // we make a call inside a verbose TryCatch.
  /external/antlr/antlr-3.4/runtime/JavaScript/third/
antcontrib.properties 10 trycatch=net.sf.antcontrib.logic.TryCatchTask
  /external/clang/test/CoverageMapping/
trycatch.cpp 1 // RUN: %clang_cc1 -triple %itanium_abi_triple -std=c++11 -fexceptions -fcxx-exceptions -fprofile-instr-generate -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -main-file-name trycatch.cpp %s | FileCheck %s
  /external/v8/test/mjsunit/regress/
regress-1184.js 29 // which goes through some try/catch block---we need to clear v8::TryCatch
  /external/v8/src/
isolate.h 253 FIELD_ACCESSOR(v8::TryCatch*, try_catch_handler)
267 v8::TryCatch::JSStackComparableAddress(try_catch_handler()));
322 v8::TryCatch* try_catch_handler_;
571 v8::TryCatch* try_catch_handler() {
719 // Re-set pending message, script and positions reported to the TryCatch
721 void RestorePendingMessageFromTryCatch(v8::TryCatch* handler);
722 // Un-schedule an exception that was caught by a TryCatch handler.
723 void CancelScheduledExceptionFromTryCatch(v8::TryCatch* handler);
763 void RegisterTryCatchHandler(v8::TryCatch* that);
764 void UnregisterTryCatchHandler(v8::TryCatch* that)
    [all...]
isolate.cc 209 for (v8::TryCatch* block = thread->try_catch_handler();
261 void Isolate::RegisterTryCatchHandler(v8::TryCatch* that) {
266 void Isolate::UnregisterTryCatchHandler(v8::TryCatch* that) {
    [all...]
messages.cc 95 v8::TryCatch catcher(reinterpret_cast<v8::Isolate*>(isolate));
129 v8::TryCatch try_catch(reinterpret_cast<v8::Isolate*>(isolate));
  /external/v8/test/cctest/compiler/
function-tester.h 74 TryCatch try_catch(reinterpret_cast<v8::Isolate*>(isolate));
84 TryCatch try_catch(reinterpret_cast<v8::Isolate*>(isolate));
  /external/v8/test/cctest/
test-thread-termination.cc 64 v8::TryCatch try_catch(args.GetIsolate());
91 v8::TryCatch try_catch(args.GetIsolate());
227 v8::TryCatch try_catch(args.GetIsolate());
285 v8::TryCatch try_catch(args.GetIsolate());
340 v8::TryCatch try_catch(args.GetIsolate());
449 v8::TryCatch try_catch(isolate);
528 v8::TryCatch try_catch(isolate);
548 v8::TryCatch try_catch(isolate);
test-accessors.cc 630 v8::TryCatch try_catch(isolate);
731 v8::TryCatch try_catch(isolate);
741 v8::TryCatch try_catch(isolate);
760 v8::TryCatch try_catch(isolate);
772 v8::TryCatch try_catch(isolate);
test-global-object.cc 43 v8::TryCatch try_catch(CcTest::isolate());
test-js-arm64-variables.cc 58 using ::v8::TryCatch;
test-api.cc 79 using ::v8::TryCatch;
203 v8::TryCatch try_catch(isolate);
731 v8::TryCatch try_catch(isolate);
741 v8::TryCatch try_catch(isolate);
    [all...]
test-javascript-arm64.cc 56 using ::v8::TryCatch;
  /external/v8/test/mjsunit/
try.js 78 function trycatch(a) { function
94 trycatch(a);
  /external/v8/samples/
process.cc 228 TryCatch try_catch(GetIsolate());
244 // The TryCatch above is still in effect and will have caught the error.
299 TryCatch try_catch(GetIsolate());
shell.cc 60 void ReportException(v8::Isolate* isolate, v8::TryCatch* handler);
352 v8::TryCatch try_catch(isolate);
384 void ReportException(v8::Isolate* isolate, v8::TryCatch* try_catch) {

Completed in 528 milliseconds

1 2 3