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

  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8WorkerGlobalScopeEventListener.cpp 75 v8::Local<v8::Function> handlerFunction = getListenerFunction(scriptState()->executionContext());
77 if (handlerFunction.IsEmpty() || receiver.IsEmpty())
80 TRACE_EVENT1(TRACE_DISABLED_BY_DEFAULT("devtools.timeline"), "FunctionCall", "data", devToolsTraceEventData(scriptState()->executionContext(), handlerFunction, isolate()));
88 GetDevToolsFunctionInfo(handlerFunction, isolate(), scriptId, resourceName, lineNumber);
93 v8::Local<v8::Value> result = V8ScriptRunner::callFunction(handlerFunction, scriptState()->executionContext(), receiver, WTF_ARRAY_LENGTH(parameters), parameters, isolate());
V8EventListener.cpp 72 v8::Local<v8::Function> handlerFunction = getListenerFunction(scriptState()->executionContext());
74 if (handlerFunction.IsEmpty() || receiver.IsEmpty())
88 return frame->script().callFunction(handlerFunction, receiver, WTF_ARRAY_LENGTH(parameters), parameters);
V8LazyEventListener.cpp 83 v8::Local<v8::Function> handlerFunction = listenerObject.As<v8::Function>();
85 if (handlerFunction.IsEmpty() || receiver.IsEmpty())
99 return frame->script().callFunction(handlerFunction, receiver, WTF_ARRAY_LENGTH(parameters), parameters);

Completed in 532 milliseconds