Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DV8Callback.cpp46 v8::TryCatch exceptionCatcher; in invokeCallback() local
47 exceptionCatcher.SetVerbose(true); in invokeCallback()
49 return !exceptionCatcher.HasCaught(); in invokeCallback()
DV8CustomElementLifecycleCallbacks.cpp188 v8::TryCatch exceptionCatcher; in created() local
189 exceptionCatcher.SetVerbose(true); in created()
231 v8::TryCatch exceptionCatcher; in attributeChanged() local
232 exceptionCatcher.SetVerbose(true); in attributeChanged()
258 v8::TryCatch exceptionCatcher; in call() local
259 exceptionCatcher.SetVerbose(true); in call()
DV8NodeFilterCondition.cpp71 v8::TryCatch exceptionCatcher; in acceptNode() local
91 if (exceptionCatcher.HasCaught()) { in acceptNode()
92 exceptionState.rethrowV8Exception(exceptionCatcher.Exception()); in acceptNode()
DNPV8Object.cpp241 ExceptionCatcher exceptionCatcher; in _NPN_Invoke() local
295 ExceptionCatcher exceptionCatcher; in _NPN_InvokeDefault() local
343 ExceptionCatcher exceptionCatcher; in _NPN_EvaluateHelper() local
378 ExceptionCatcher exceptionCatcher; in _NPN_GetProperty() local
411 ExceptionCatcher exceptionCatcher; in _NPN_SetProperty() local
438 ExceptionCatcher exceptionCatcher; in _NPN_RemoveProperty() local
457 ExceptionCatcher exceptionCatcher; in _NPN_HasProperty() local
479 ExceptionCatcher exceptionCatcher; in _NPN_HasMethod() local
506 ExceptionCatcher exceptionCatcher; in _NPN_SetException() local
522 ExceptionCatcher exceptionCatcher; in _NPN_Enumerate() local
[all …]
DV8MutationCallback.cpp74 v8::TryCatch exceptionCatcher; in call() local
75 exceptionCatcher.SetVerbose(true); in call()
DCustomElementConstructorBuilder.cpp159 v8::TryCatch exceptionCatcher; in createCallbacks() local
160 exceptionCatcher.SetVerbose(true); in createCallbacks()
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
DV8CustomSQLStatementErrorCallback.cpp68 v8::TryCatch exceptionCatcher; in handleEvent() local
69 exceptionCatcher.SetVerbose(true); in handleEvent()
79 return exceptionCatcher.HasCaught() || (!result.IsEmpty() && result->BooleanValue()); in handleEvent()
DV8XMLHttpRequestCustom.cpp107 v8::TryCatch exceptionCatcher; in responseAttributeGetterCustom() local
109 if (exceptionCatcher.HasCaught() || json.IsEmpty()) in responseAttributeGetterCustom()
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
DCryptoResultImpl.cpp131 v8::TryCatch exceptionCatcher; in completeWithJson() local
133 if (exceptionCatcher.HasCaught() || jsonDictionary.IsEmpty()) { in completeWithJson()