Searched defs:dispatchEvent (Results 1 - 25 of 26) sorted by relevance

12

/external/webkit/Source/WebCore/dom/
H A DScopedEventQueue.cpp64 dispatchEvent(event);
73 dispatchEvent(queuedEvents[i].release());
76 void ScopedEventQueue::dispatchEvent(PassRefPtr<Event> event) const function in class:WebCore::ScopedEventQueue
79 eventTarget->dispatchEvent(event);
H A DEventQueue.cpp89 target->dispatchEvent(scrollEvent.release());
135 dispatchEvent(event.get());
139 void EventQueue::dispatchEvent(PassRefPtr<Event> event) function in class:WebCore::EventQueue
143 eventTarget->toDOMWindow()->dispatchEvent(event, 0);
145 eventTarget->dispatchEvent(event);
H A DWheelEvent.cpp118 bool WheelEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const function in class:WebCore::WheelEventDispatchMediator
123 return EventDispatchMediator::dispatchEvent(dispatcher) && !event()->defaultHandled();
H A DKeyboardEvent.cpp169 bool KeyboardEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const function in class:WebCore::KeyboardEventDispatchMediator
172 return EventDispatchMediator::dispatchEvent(dispatcher) && !event()->defaultHandled();
H A DEvent.cpp311 bool EventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const function in class:WebCore::EventDispatchMediator
313 return dispatcher->dispatchEvent(m_event.get());
H A DEventDispatcher.cpp54 bool EventDispatcher::dispatchEvent(Node* node, const EventDispatchMediator& mediator) function in class:WebCore::EventDispatcher
59 return mediator.dispatchEvent(&dispatcher);
116 dispatcher.dispatchEvent(SimulatedMouseEvent::create(eventNames().mousedownEvent, node->document()->defaultView(), underlyingEvent));
119 dispatcher.dispatchEvent(SimulatedMouseEvent::create(eventNames().mouseupEvent, node->document()->defaultView(), underlyingEvent));
123 dispatcher.dispatchEvent(SimulatedMouseEvent::create(eventNames().clickEvent, node->document()->defaultView(), underlyingEvent));
279 bool EventDispatcher::dispatchEvent(PassRefPtr<Event> event) function in class:WebCore::EventDispatcher
H A DEventTarget.cpp292 bool EventTarget::dispatchEvent(PassRefPtr<Event> event, ExceptionCode& ec) function in class:WebCore::EventTarget
302 return dispatchEvent(event);
305 bool EventTarget::dispatchEvent(PassRefPtr<Event> event) function in class:WebCore::EventTarget
H A DMouseEvent.cpp165 bool MouseEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const function in class:WebCore::MouseEventDispatchMediator
176 dispatcher->dispatchEvent(event());
190 dispatcher->dispatchEvent(doubleClickEvent);
H A DNode.cpp2711 bool Node::dispatchEvent(PassRefPtr<Event> event) function in class:WebCore::Node
2713 return EventDispatcher::dispatchEvent(this, EventDispatchMediator(event));
2745 return EventDispatcher::dispatchEvent(this, KeyboardEventDispatchMediator(KeyboardEvent::create(event, document()->defaultView())));
2751 return EventDispatcher::dispatchEvent(this, MouseEventDispatchMediator(MouseEvent::create(eventType, document()->defaultView(), event, detail, relatedTarget)));
2761 return EventDispatcher::dispatchEvent(this, WheelEventDispatchMediator(event, document()->defaultView()));
2766 dispatchEvent(Event::create(eventNames().focusEvent, false, false));
2771 dispatchEvent(Event::create(eventNames().blurEvent, false, false));
2776 dispatchEvent(Event::create(eventNames().changeEvent, true, false));
2781 dispatchEvent(Event::create(eventNames().inputEvent, true, false));
/external/webkit/Source/WebCore/storage/
H A DIDBTransaction.h79 virtual bool dispatchEvent(PassRefPtr<Event>);
80 bool dispatchEvent(PassRefPtr<Event> event, ExceptionCode& ec) { return EventTarget::dispatchEvent(event, ec); } function in class:WebCore::IDBTransaction
H A DIDBDatabase.h91 bool dispatchEvent(PassRefPtr<Event> event, ExceptionCode& ec) { return EventTarget::dispatchEvent(event, ec); } function in class:WebCore::IDBDatabase
92 virtual bool dispatchEvent(PassRefPtr<Event>);
H A DIDBRequest.h90 virtual bool dispatchEvent(PassRefPtr<Event>);
91 bool dispatchEvent(PassRefPtr<Event> event, ExceptionCode& ec) { return EventTarget::dispatchEvent(event, ec); } function in class:WebCore::IDBRequest
H A DIDBDatabase.cpp192 bool IDBDatabase::dispatchEvent(PassRefPtr<Event> event) function in class:WebCore::IDBDatabase
199 return EventTarget::dispatchEvent(event.get());
H A DIDBTransaction.cpp146 bool IDBTransaction::dispatchEvent(PassRefPtr<Event> event) function in class:WebCore::IDBTransaction
H A DIDBRequest.cpp259 bool IDBRequest::dispatchEvent(PassRefPtr<Event> event) function in class:WebCore::IDBRequest
/external/webkit/Source/WebCore/xml/
H A DXMLHttpRequestProgressEventThrottle.cpp61 dispatchEvent(XMLHttpRequestProgressEvent::create(eventNames().progressEvent, lengthComputable, loaded, total));
72 void XMLHttpRequestProgressEventThrottle::dispatchEvent(PassRefPtr<Event> event, ProgressEventAction progressEventAction) function in class:WebCore::XMLHttpRequestProgressEventThrottle
81 m_target->dispatchEvent(event);
96 m_target->dispatchEvent(event);
105 m_target->dispatchEvent(m_pausedEvent);
120 m_target->dispatchEvent(XMLHttpRequestProgressEvent::create(eventNames().progressEvent, m_lengthComputable, m_loaded, m_total));
/external/webkit/Source/WebCore/svg/
H A DSVGElementInstance.cpp136 bool SVGElementInstance::dispatchEvent(PassRefPtr<Event> event) function in class:WebCore::SVGElementInstance
142 return element->dispatchEvent(event);
/external/clang/include/clang/StaticAnalyzer/Core/
H A DChecker.h455 void dispatchEvent(const EVENT &event) const { function in class:clang::ento::EventDispatcher
/external/webkit/Source/WebKit/win/
H A DDOMCoreClasses.cpp418 HRESULT STDMETHODCALLTYPE DOMNode::dispatchEvent( function in class:DOMNode
436 *result = m_node->dispatchEvent(domEvent->coreEvent(), ec) ? TRUE : FALSE;
/external/webkit/Tools/DumpRenderTree/gtk/
H A DEventSender.cpp90 static void dispatchEvent(GdkEvent* event);
242 dispatchEvent(pressEvent);
244 dispatchEvent(releaseEvent);
546 dispatchEvent(event);
549 static void dispatchEvent(GdkEvent* event) function
601 dispatchEvent(msgQueue[startOfQueue++].event);
737 dispatchEvent(pressEvent);
739 dispatchEvent(releaseEvent);
/external/webkit/Source/WebCore/page/
H A DDOMWindow.cpp304 window->dispatchEvent(PageTransitionEvent::create(eventNames().pagehideEvent, false), window->document());
305 window->dispatchEvent(Event::create(eventNames().unloadEvent, false, false), window->document());
854 dispatchEvent(timer->event(document()));
1585 dispatchEvent(loadEvent, document());
1592 ownerElement->dispatchEvent(Event::create(eventNames().loadEvent, false, false));
1597 bool DOMWindow::dispatchEvent(PassRefPtr<Event> prpEvent, PassRefPtr<EventTarget> prpTarget) function in class:WebCore::DOMWindow
1620 dispatchEvent(event, target);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.event_1.2.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.core_2.0.2.R36x_v20100804.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 4741 milliseconds

12