Home
last modified time | relevance | path

Searched refs:tryCatch (Results 1 – 13 of 13) sorted by relevance

/external/webkit/Source/WebCore/bindings/v8/
DV8AbstractEventListener.cpp151 v8::TryCatch tryCatch; in invokeEventHandler() local
152 tryCatch.SetVerbose(true); in invokeEventHandler()
156 tryCatch.Reset(); in invokeEventHandler()
160 tryCatch.Reset(); in invokeEventHandler()
163 if (tryCatch.HasCaught()) in invokeEventHandler()
166 if (!tryCatch.CanContinue()) { // Result of TerminateExecution(). in invokeEventHandler()
173 tryCatch.Reset(); in invokeEventHandler()
180 tryCatch.Reset(); in invokeEventHandler()
DV8WindowErrorHandler.cpp57 v8::TryCatch tryCatch; in callListenerFunction() local
58 tryCatch.SetVerbose(true); in callListenerFunction()
60 …if (!tryCatch.HasCaught() && !returnValue.IsEmpty() && returnValue->IsBoolean() && !returnValue->B… in callListenerFunction()
DScriptDebugServer.cpp226 v8::TryCatch tryCatch; in editScriptSource() local
227 tryCatch.SetVerbose(false); in editScriptSource()
229 if (tryCatch.HasCaught()) { in editScriptSource()
230 v8::Local<v8::Message> message = tryCatch.Message(); in editScriptSource()
DV8Proxy.cpp350 v8::TryCatch tryCatch; in evaluate() local
351 tryCatch.SetVerbose(true); in evaluate()
410 v8::TryCatch tryCatch; in runScript() local
411 tryCatch.SetVerbose(true); in runScript()
428 if (tryCatch.HasCaught()) { in runScript()
DSerializedScriptValue.cpp347 Serializer(Writer& writer, v8::TryCatch& tryCatch) in Serializer() argument
349 , m_tryCatch(tryCatch) in Serializer()
353 ASSERT(!tryCatch.HasCaught()); in Serializer()
1225 v8::TryCatch tryCatch; in SerializedScriptValue() local
1226 Serializer serializer(writer, tryCatch); in SerializedScriptValue()
1231 tryCatch.ReThrow(); in SerializedScriptValue()
DV8DOMWrapper.cpp142 v8::TryCatch tryCatch; in getConstructor() local
/external/webkit/Source/WebCore/bindings/v8/custom/
DV8HistoryCustom.cpp51 v8::TryCatch tryCatch; in pushStateCallback() local
53 if (tryCatch.HasCaught()) in pushStateCallback()
58 if (tryCatch.HasCaught()) in pushStateCallback()
75 v8::TryCatch tryCatch; in replaceStateCallback() local
77 if (tryCatch.HasCaught()) in replaceStateCallback()
82 if (tryCatch.HasCaught()) in replaceStateCallback()
DV8SharedWorkerCustom.cpp57 v8::TryCatch tryCatch; in constructorCallback() local
63 if (tryCatch.HasCaught()) in constructorCallback()
64 return throwError(tryCatch.Exception()); in constructorCallback()
DV8WebSocketCustom.cpp57 v8::TryCatch tryCatch; in constructorCallback() local
59 if (tryCatch.HasCaught()) in constructorCallback()
60 return throwError(tryCatch.Exception()); in constructorCallback()
DV8WorkerCustom.cpp60 v8::TryCatch tryCatch; in constructorCallback() local
62 if (tryCatch.HasCaught()) in constructorCallback()
63 return throwError(tryCatch.Exception()); in constructorCallback()
DV8WorkerContextCustom.cpp96 v8::TryCatch tryCatch; in importScriptsCallback() local
98 if (tryCatch.HasCaught() || scriptUrl.IsEmpty()) in importScriptsCallback()
DV8DOMWindowCustom.cpp335 v8::TryCatch tryCatch; in postMessageCallback() local
344 if (tryCatch.HasCaught()) in postMessageCallback()
/external/webkit/Source/WebKit/chromium/src/
DWebDevToolsFrontendImpl.cpp124 v8::TryCatch tryCatch; in dispatchOnInspectorFrontend() local
125 tryCatch.SetVerbose(true); in dispatchOnInspectorFrontend()