HomeSort by relevance Sort by last modified time
    Searched defs:JSEventListener (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/bindings/js/
JSEventListener.cpp 21 #include "JSEventListener.h"
36 JSEventListener::JSEventListener(JSObject* function, JSObject* wrapper, bool isAttribute, DOMWrapperWorld* isolatedWorld)
49 JSEventListener::~JSEventListener()
53 JSObject* JSEventListener::initializeJSFunction(ScriptExecutionContext*) const
59 void JSEventListener::markJSFunction(MarkStack& markStack)
65 void JSEventListener::handleEvent(ScriptExecutionContext* scriptExecutionContext, Event* event)
159 bool JSEventListener::virtualisAttribute() const
164 bool JSEventListener::operator==(const EventListener& listener
    [all...]
JSEventListener.h 31 class JSEventListener : public EventListener {
33 static PassRefPtr<JSEventListener> create(JSC::JSObject* listener, JSC::JSObject* wrapper, bool isAttribute, DOMWrapperWorld* isolatedWorld)
35 return adoptRef(new JSEventListener(listener, wrapper, isAttribute, isolatedWorld));
38 static const JSEventListener* cast(const EventListener* listener)
41 ? static_cast<const JSEventListener*>(listener)
45 virtual ~JSEventListener();
64 JSEventListener(JSC::JSObject* function, JSC::JSObject* wrapper, bool isAttribute, DOMWrapperWorld* isolatedWorld);
75 inline JSC::JSObject* JSEventListener::jsFunction(ScriptExecutionContext* scriptExecutionContext) const
94 inline PassRefPtr<JSEventListener> createJSAttributeEventListener(JSC::ExecState* exec, JSC::JSValue listener, JSC::JSObject* wrapper)
99 return JSEventListener::create(asObject(listener), wrapper, true, currentWorld(exec))
    [all...]

Completed in 200 milliseconds