OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:handlerFunction
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/bindings/v8/
V8EventListener.cpp
69
v8::Local<v8::Function>
handlerFunction
= getListenerFunction(context);
71
if (
handlerFunction
.IsEmpty() || receiver.IsEmpty())
77
return proxy->callFunction(
handlerFunction
, receiver, 1, parameters);
V8WorkerContextEventListener.cpp
87
v8::Local<v8::Function>
handlerFunction
= getListenerFunction(context);
89
if (
handlerFunction
.IsEmpty() || receiver.IsEmpty())
93
v8::Local<v8::Value> result =
handlerFunction
->Call(receiver, 1, parameters);
V8LazyEventListener.cpp
61
v8::Local<v8::Function>
handlerFunction
= v8::Local<v8::Function>::Cast(listenerObject);
63
if (
handlerFunction
.IsEmpty() || receiver.IsEmpty())
69
return proxy->callFunction(
handlerFunction
, receiver, 1, parameters);
Completed in 180 milliseconds