HomeSort by relevance Sort by last modified time
    Searched refs:tryCatch (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8AbstractEventListener.cpp 117 v8::TryCatch tryCatch;
118 tryCatch.SetVerbose(true);
122 tryCatch.Reset();
126 tryCatch.Reset();
129 if (tryCatch.HasCaught())
132 if (!tryCatch.CanContinue()) { // Result of TerminateExecution().
137 tryCatch.Reset();
144 tryCatch.Reset();
CustomElementConstructorBuilder.cpp 73 v8::TryCatch tryCatch;
77 ASSERT(!tryCatch.HasCaught());
80 tryCatch.ReThrow();
84 } else if (!tryCatch.HasCaught()) {
91 if (tryCatch.HasCaught()) {
92 tryCatch.ReThrow();
99 if (tryCatch.HasCaught()) {
100 tryCatch.ReThrow();
107 tryCatch.ReThrow()
    [all...]
ScriptPreprocessor.cpp 55 v8::TryCatch tryCatch;
56 tryCatch.SetVerbose(true);
104 v8::TryCatch tryCatch;
105 tryCatch.SetVerbose(true);
ScriptFunctionCall.cpp 139 v8::TryCatch tryCatch;
140 tryCatch.SetVerbose(reportExceptions);
144 if (tryCatch.HasCaught()) {
159 if (tryCatch.HasCaught()) {
176 v8::TryCatch tryCatch;
177 tryCatch.SetVerbose(reportExceptions);
181 if (tryCatch.HasCaught()) {
194 if (tryCatch.HasCaught())
    [all...]
ScriptRegexp.cpp 44 v8::TryCatch tryCatch;
76 v8::TryCatch tryCatch;
83 if (tryCatch.HasCaught())
V8ErrorHandler.cpp 71 v8::TryCatch tryCatch;
72 tryCatch.SetVerbose(true);
ScriptStreamerTest.cpp 166 v8::TryCatch tryCatch;
169 EXPECT_FALSE(tryCatch.HasCaught());
199 v8::TryCatch tryCatch;
202 EXPECT_TRUE(tryCatch.HasCaught());
ScriptDebugServer.cpp 277 v8::TryCatch tryCatch;
278 tryCatch.SetVerbose(false);
280 if (tryCatch.HasCaught()) {
281 v8::Local<v8::Message> message = tryCatch.Message();
659 v8::TryCatch tryCatch;
661 if (tryCatch.HasCaught()) {
662 v8::Local<v8::Message> message = tryCatch.Message();
697 v8::TryCatch tryCatch
    [all...]
ScriptController.cpp 186 v8::TryCatch tryCatch;
187 tryCatch.SetVerbose(true);
197 ASSERT(!tryCatch.HasCaught() || result.IsEmpty());
V8PerContextData.cpp 99 v8::TryCatch tryCatch;
PageScriptDebugServer.cpp 250 v8::TryCatch tryCatch;
SerializedScriptValue.cpp     [all...]
  /external/chromium_org/third_party/skia/experimental/SkV8Example/
Global.cpp 33 void Global::reportException(TryCatch* tryCatch) {
35 String::Utf8Value exception(tryCatch->Exception());
37 Handle<Message> message = tryCatch->Message();
63 String::Utf8Value stackTrace(tryCatch->StackTrace());
145 TryCatch tryCatch;
161 SkASSERT(tryCatch.HasCaught());
163 gGlobal->reportException(&tryCatch);
165 SkASSERT(!tryCatch.HasCaught())
    [all...]
JsContext.cpp 82 TryCatch tryCatch;
94 SkASSERT(tryCatch.HasCaught());
96 fGlobal->reportException(&tryCatch);
98 SkASSERT(!tryCatch.HasCaught());
121 v8::TryCatch try_catch;
Global.h 58 void reportException(TryCatch* tryCatch);
  /external/skia/experimental/SkV8Example/
Global.cpp 33 void Global::reportException(TryCatch* tryCatch) {
35 String::Utf8Value exception(tryCatch->Exception());
37 Handle<Message> message = tryCatch->Message();
63 String::Utf8Value stackTrace(tryCatch->StackTrace());
145 TryCatch tryCatch;
161 SkASSERT(tryCatch.HasCaught());
163 gGlobal->reportException(&tryCatch);
165 SkASSERT(!tryCatch.HasCaught())
    [all...]
JsContext.cpp 82 TryCatch tryCatch;
94 SkASSERT(tryCatch.HasCaught());
96 fGlobal->reportException(&tryCatch);
98 SkASSERT(!tryCatch.HasCaught());
121 v8::TryCatch try_catch;
Global.h 58 void reportException(TryCatch* tryCatch);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8CustomXPathNSResolver.cpp 77 v8::TryCatch tryCatch;
78 tryCatch.SetVerbose(true); // Print exceptions to console.
87 if (tryCatch.HasCaught())
V8InjectedScriptHostCustom.cpp 128 v8::TryCatch tryCatch;
132 if (!constructorName.IsEmpty() && !tryCatch.HasCaught())
266 v8::TryCatch block;
339 v8::TryCatch tryCatch;
341 if (tryCatch.HasCaught()) {
342 v8SetReturnValue(info, tryCatch.ReThrow());
363 v8::TryCatch tryCatch;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
JavaScriptCallFrame.cpp 159 v8::TryCatch tryCatch;
163 if (tryCatch.HasCaught()) {
164 wrappedResult->Set(v8::String::NewFromUtf8(m_isolate, "result"), tryCatch.Exception());
165 wrappedResult->Set(v8::String::NewFromUtf8(m_isolate, "exceptionDetails"), createExceptionDetails(tryCatch.Message(), m_isolate));
  /external/chromium_org/v8/test/cctest/
test-debug.cc 214 v8::TryCatch try_catch;
243 v8::TryCatch try_catch;
    [all...]

Completed in 543 milliseconds