Searched defs:tryCatch (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptFunctionCall.cpp139 v8::TryCatch tryCatch; local
140 tryCatch.SetVerbose(reportExceptions);
144 if (tryCatch.HasCaught()) {
159 if (tryCatch.HasCaught()) {
176 v8::TryCatch tryCatch; local
177 tryCatch.SetVerbose(reportExceptions);
181 if (tryCatch.HasCaught()) {
194 if (tryCatch.HasCaught()) {
H A DScriptPreprocessor.cpp55 v8::TryCatch tryCatch; local
56 tryCatch.SetVerbose(true);
104 v8::TryCatch tryCatch; local
105 tryCatch.SetVerbose(true);
H A DScriptRegexp.cpp44 v8::TryCatch tryCatch; local
76 v8::TryCatch tryCatch; local
83 if (tryCatch.HasCaught())
H A DV8ErrorHandler.cpp71 v8::TryCatch tryCatch; local
72 tryCatch.SetVerbose(true);
H A DV8AbstractEventListener.cpp117 v8::TryCatch tryCatch; local
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();
H A DScriptStreamerTest.cpp166 v8::TryCatch tryCatch; local
169 EXPECT_FALSE(tryCatch.HasCaught());
199 v8::TryCatch tryCatch; local
202 EXPECT_TRUE(tryCatch.HasCaught());
H A DCustomElementConstructorBuilder.cpp73 v8::TryCatch tryCatch; local
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();
115 ASSERT(!tryCatch
[all...]
H A DV8PerContextData.cpp99 v8::TryCatch tryCatch; local
H A DPageScriptDebugServer.cpp250 v8::TryCatch tryCatch; local
H A DScriptController.cpp186 v8::TryCatch tryCatch; local
187 tryCatch.SetVerbose(true);
197 ASSERT(!tryCatch.HasCaught() || result.IsEmpty());
H A DScriptDebugServer.cpp277 v8::TryCatch tryCatch; local
278 tryCatch.SetVerbose(false);
280 if (tryCatch.HasCaught()) {
281 v8::Local<v8::Message> message = tryCatch.Message();
659 v8::TryCatch tryCatch; local
661 if (tryCatch.HasCaught()) {
662 v8::Local<v8::Message> message = tryCatch.Message();
697 v8::TryCatch tryCatch; local
700 if (tryCatch.HasCaught()) {
702 *result = ScriptValue(scriptState, tryCatch
[all...]
H A DSerializedScriptValue.cpp933 Serializer(Writer& writer, MessagePortArray* messagePorts, ArrayBufferArray* arrayBuffers, WebBlobInfoArray* blobInfo, BlobDataHandleMap& blobDataHandles, v8::TryCatch& tryCatch, ScriptState* scriptState) argument
936 , m_tryCatch(tryCatch)
943 ASSERT(!tryCatch.HasCaught());
2943 v8::TryCatch tryCatch; local
2944 Serializer serializer(writer, messagePorts, arrayBuffers, blobInfo, m_blobDataHandles, tryCatch, ScriptState::current(isolate));
2948 exceptionState.rethrowV8Exception(tryCatch.Exception());
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8CustomXPathNSResolver.cpp77 v8::TryCatch tryCatch; local
78 tryCatch.SetVerbose(true); // Print exceptions to console.
87 if (tryCatch.HasCaught())
H A DV8InjectedScriptHostCustom.cpp128 v8::TryCatch tryCatch; local
132 if (!constructorName.IsEmpty() && !tryCatch.HasCaught())
339 v8::TryCatch tryCatch; local
341 if (tryCatch.HasCaught()) {
342 v8SetReturnValue(info, tryCatch.ReThrow());
363 v8::TryCatch tryCatch; local
367 if (tryCatch.HasCaught()) {
368 wrappedResult->Set(v8::String::NewFromUtf8(isolate, "result"), tryCatch.Exception());
369 wrappedResult->Set(v8::String::NewFromUtf8(isolate, "exceptionDetails"), JavaScriptCallFrame::createExceptionDetails(tryCatch.Message(), isolate));
/external/chromium_org/third_party/skia/experimental/SkV8Example/
H A DJsContext.cpp82 TryCatch tryCatch; local
94 SkASSERT(tryCatch.HasCaught());
96 fGlobal->reportException(&tryCatch);
98 SkASSERT(!tryCatch.HasCaught());
H A DGlobal.cpp33 void Global::reportException(TryCatch* tryCatch) { argument
35 String::Utf8Value exception(tryCatch->Exception());
37 Handle<Message> message = tryCatch->Message();
63 String::Utf8Value stackTrace(tryCatch->StackTrace());
145 TryCatch tryCatch; local
161 SkASSERT(tryCatch.HasCaught());
163 gGlobal->reportException(&tryCatch);
165 SkASSERT(!tryCatch.HasCaught());
221 v8::TryCatch tryCatch; local
229 this->reportException(&tryCatch);
[all...]
/external/skia/experimental/SkV8Example/
H A DJsContext.cpp82 TryCatch tryCatch; local
94 SkASSERT(tryCatch.HasCaught());
96 fGlobal->reportException(&tryCatch);
98 SkASSERT(!tryCatch.HasCaught());
H A DGlobal.cpp33 void Global::reportException(TryCatch* tryCatch) { argument
35 String::Utf8Value exception(tryCatch->Exception());
37 Handle<Message> message = tryCatch->Message();
63 String::Utf8Value stackTrace(tryCatch->StackTrace());
145 TryCatch tryCatch; local
161 SkASSERT(tryCatch.HasCaught());
163 gGlobal->reportException(&tryCatch);
165 SkASSERT(!tryCatch.HasCaught());
221 v8::TryCatch tryCatch; local
229 this->reportException(&tryCatch);
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DJavaScriptCallFrame.cpp159 v8::TryCatch tryCatch; local
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/
H A Dtest-debug.cc4037 v8::TryCatch tryCatch; local
4040 CHECK(tryCatch.HasCaught());
4041 tryCatch.ReThrow();
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 313 milliseconds