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

  /external/webkit/Source/WebCore/bindings/js/
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...]
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...]
JSErrorHandler.h 34 #include "JSEventListener.h"
38 class JSErrorHandler : public JSEventListener {
JSLazyEventListener.h 23 #include "JSEventListener.h"
30 class JSLazyEventListener : public JSEventListener {
JSErrorHandler.cpp 45 : JSEventListener(function, wrapper, isAttribute, isolatedWorld)
56 return JSEventListener::handleEvent(scriptExecutionContext, event);
ScriptEventListener.cpp 99 const JSEventListener* jsListener = JSEventListener::cast(eventListener);
JSDOMWindowBase.h 39 class JSEventListener;
JSDOMGlobalObject.h 38 class JSEventListener;
JSLazyEventListener.cpp 40 : JSEventListener(0, wrapper, true, isolatedWorld)
JSDOMWindowCustom.cpp 31 #include "JSEventListener.h"
786 impl()->addEventListener(ustringToAtomicString(exec->argument(0).toString(exec)), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)), exec->argument(2).toBoolean(exec));
800 impl()->removeEventListener(ustringToAtomicString(exec->argument(0).toString(exec)), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)).get(), exec->argument(2).toBoolean(exec));
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestObj.cpp 29 #include "JSEventListener.h"
    [all...]
  /external/webkit/Source/WebCore/bindings/scripts/
CodeGeneratorJS.pm 164 $implIncludes{"JSEventListener.h"} = 1;
183 imp->${functionName}EventListener(ustringToAtomicString(exec->argument(0).toString(exec)), JSEventListener::create(asObject(listener), $wrapperObject, false, currentWorld(exec))$passRefPtrHandling, exec->argument(2).toBoolean(exec));
    [all...]

Completed in 551 milliseconds