Home
last modified time | relevance | path

Searched refs:exceptionCatcher (Results 1 – 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/bindings/v8/
DWorkerContextExecutionProxy.cpp200 v8::TryCatch exceptionCatcher; in evaluate() local
206 if (!exceptionCatcher.CanContinue()) { in evaluate()
211 if (exceptionCatcher.HasCaught()) { in evaluate()
212 v8::Local<v8::Message> message = exceptionCatcher.Message(); in evaluate()
220 state->exception = ScriptValue(exceptionCatcher.Exception()); in evaluate()
222 exceptionCatcher.Reset(); in evaluate()
DNPV8Object.cpp174 ExceptionCatcher exceptionCatcher; in _NPN_Invoke() local
227 ExceptionCatcher exceptionCatcher; in _NPN_InvokeDefault() local
276 ExceptionCatcher exceptionCatcher; in _NPN_EvaluateHelper() local
315 ExceptionCatcher exceptionCatcher; in _NPN_GetProperty() local
350 ExceptionCatcher exceptionCatcher; in _NPN_SetProperty() local
378 ExceptionCatcher exceptionCatcher; in _NPN_RemoveProperty() local
399 ExceptionCatcher exceptionCatcher; in _NPN_HasProperty() local
423 ExceptionCatcher exceptionCatcher; in _NPN_HasMethod() local
453 ExceptionCatcher exceptionCatcher; in _NPN_SetException() local
471 ExceptionCatcher exceptionCatcher; in _NPN_Enumerate() local
[all …]
DV8NodeFilterCondition.cpp68 v8::TryCatch exceptionCatcher; in acceptNode() local
88 if (exceptionCatcher.HasCaught()) { in acceptNode()
89 state->setException(exceptionCatcher.Exception()); in acceptNode()
DScriptFunctionCall.cpp192 v8::TryCatch exceptionCatcher; in call() local
202 if (exceptionCatcher.HasCaught()) { in call()
204 m_scriptState->setException(exceptionCatcher.Exception()); in call()
/external/webkit/Source/WebCore/bindings/v8/custom/
DV8CustomVoidCallback.cpp68 v8::TryCatch exceptionCatcher; in invokeCallback() local
69 exceptionCatcher.SetVerbose(true); in invokeCallback()
88 return exceptionCatcher.HasCaught(); in invokeCallback()
DV8NavigatorCustom.cpp50 v8::TryCatch exceptionCatcher; in webkitGetUserMediaCallback() local
52 if (exceptionCatcher.HasCaught()) in webkitGetUserMediaCallback()
53 return throwError(exceptionCatcher.Exception()); in webkitGetUserMediaCallback()
DV8DocumentCustom.cpp87 v8::TryCatch exceptionCatcher; in evaluateCallback() local
89 if (exceptionCatcher.HasCaught()) in evaluateCallback()
90 return throwError(exceptionCatcher.Exception()); in evaluateCallback()