HomeSort by relevance Sort by last modified time
    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 63 milliseconds