Home
last modified time | relevance | path

Searched refs:EventDispatchMediator (Results 1 – 25 of 34) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/events/
DEventDispatchMediator.cpp39 PassRefPtrWillBeRawPtr<EventDispatchMediator> EventDispatchMediator::create(PassRefPtrWillBeRawPtr<… in create()
41 return adoptRefWillBeNoop(new EventDispatchMediator(event)); in create()
44 EventDispatchMediator::EventDispatchMediator(PassRefPtrWillBeRawPtr<Event> event) in EventDispatchMediator() function in blink::EventDispatchMediator
49 void EventDispatchMediator::trace(Visitor* visitor) in trace()
54 bool EventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent()
DEventDispatchMediator.h45 class EventDispatchMediator : public RefCountedWillBeGarbageCollectedFinalized<EventDispatchMediato…
47 static PassRefPtrWillBeRawPtr<EventDispatchMediator> create(PassRefPtrWillBeRawPtr<Event>);
48 virtual ~EventDispatchMediator() { }; in ~EventDispatchMediator()
54 explicit EventDispatchMediator(PassRefPtrWillBeRawPtr<Event>);
55 EventDispatchMediator() { }; in EventDispatchMediator() function
DFocusEvent.cpp77 : EventDispatchMediator(focusEvent) in FocusEventDispatchMediator()
84 return EventDispatchMediator::dispatchEvent(dispatcher); in dispatchEvent()
93 : EventDispatchMediator(focusEvent) in BlurEventDispatchMediator()
100 return EventDispatchMediator::dispatchEvent(dispatcher); in dispatchEvent()
109 : EventDispatchMediator(focusEvent) in FocusInEventDispatchMediator()
116 return EventDispatchMediator::dispatchEvent(dispatcher); in dispatchEvent()
125 : EventDispatchMediator(focusEvent) in FocusOutEventDispatchMediator()
132 return EventDispatchMediator::dispatchEvent(dispatcher); in dispatchEvent()
DFocusEvent.h78 class FocusEventDispatchMediator FINAL : public EventDispatchMediator {
83 FocusEvent* event() const { return static_cast<FocusEvent*>(EventDispatchMediator::event()); } in event()
87 class BlurEventDispatchMediator FINAL : public EventDispatchMediator {
92 FocusEvent* event() const { return static_cast<FocusEvent*>(EventDispatchMediator::event()); } in event()
96 class FocusInEventDispatchMediator FINAL : public EventDispatchMediator {
101 FocusEvent* event() const { return static_cast<FocusEvent*>(EventDispatchMediator::event()); } in event()
105 class FocusOutEventDispatchMediator FINAL : public EventDispatchMediator {
110 FocusEvent* event() const { return static_cast<FocusEvent*>(EventDispatchMediator::event()); } in event()
DScopedEventQueue.h42 class EventDispatchMediator; variable
49 void enqueueEventDispatchMediator(PassRefPtrWillBeRawPtr<EventDispatchMediator>);
59 void dispatchEvent(PassRefPtrWillBeRawPtr<EventDispatchMediator>) const;
61 …WillBePersistentHeapVector<RefPtrWillBeMember<EventDispatchMediator> > m_queuedEventDispatchMediat…
DEventDispatcher.h37 class EventDispatchMediator; variable
51 static bool dispatchEvent(Node*, PassRefPtrWillBeRawPtr<EventDispatchMediator>);
52 static void dispatchScopedEvent(Node*, PassRefPtrWillBeRawPtr<EventDispatchMediator>);
DScopedEventQueue.cpp62 void ScopedEventQueue::enqueueEventDispatchMediator(PassRefPtrWillBeRawPtr<EventDispatchMediator> m… in enqueueEventDispatchMediator()
72 WillBeHeapVector<RefPtrWillBeMember<EventDispatchMediator> > queuedEventDispatchMediators; in dispatchAllEvents()
79 void ScopedEventQueue::dispatchEvent(PassRefPtrWillBeRawPtr<EventDispatchMediator> mediator) const in dispatchEvent()
DTouchEvent.cpp118 : EventDispatchMediator(touchEvent) in TouchEventDispatchMediator()
124 return toTouchEvent(EventDispatchMediator::event()); in event()
DGestureEvent.cpp103 : EventDispatchMediator(gestureEvent) in GestureEventDispatchMediator()
109 return toGestureEvent(EventDispatchMediator::event()); in event()
DWheelEvent.cpp117 return toWheelEvent(EventDispatchMediator::event()); in event()
123 return EventDispatchMediator::dispatchEvent(dispatcher) && !event()->defaultHandled(); in dispatchEvent()
DKeyboardEvent.cpp221 : EventDispatchMediator(event) in KeyboardEventDispatchMediator()
228 return EventDispatchMediator::dispatchEvent(dispatcher) && !event()->defaultHandled(); in dispatchEvent()
DGestureEvent.h58 class GestureEventDispatchMediator FINAL : public EventDispatchMediator {
DEventDispatcher.cpp43 bool EventDispatcher::dispatchEvent(Node* node, PassRefPtrWillBeRawPtr<EventDispatchMediator> media… in dispatchEvent()
67 void EventDispatcher::dispatchScopedEvent(Node* node, PassRefPtrWillBeRawPtr<EventDispatchMediator>… in dispatchScopedEvent()
DTouchEvent.h88 class TouchEventDispatchMediator FINAL : public EventDispatchMediator {
DWheelEvent.h109 class WheelEventDispatchMediator FINAL : public EventDispatchMediator {
DKeyboardEvent.h118 class KeyboardEventDispatchMediator : public EventDispatchMediator {
DMouseEvent.cpp237 : EventDispatchMediator(mouseEvent), m_mouseEventType(mouseEventType) in MouseEventDispatchMediator()
243 return toMouseEvent(EventDispatchMediator::event()); in event()
DMouseEvent.h130 class MouseEventDispatchMediator FINAL : public EventDispatchMediator {
/external/chromium_org/third_party/WebKit/Source/core/dom/
DNode.h54 class EventDispatchMediator; variable
615 void dispatchScopedEventDispatchMediator(PassRefPtrWillBeRawPtr<EventDispatchMediator>);
DNode.cpp2103 dispatchScopedEventDispatchMediator(EventDispatchMediator::create(event)); in dispatchScopedEvent()
2106 void Node::dispatchScopedEventDispatchMediator(PassRefPtrWillBeRawPtr<EventDispatchMediator> eventD… in dispatchScopedEventDispatchMediator()
2117 return EventDispatcher::dispatchEvent(this, EventDispatchMediator::create(event)); in dispatchEvent()
/external/chromium_org/third_party/WebKit/Source/core/
Dwebcore_dom.target.darwin-x86.mk183 third_party/WebKit/Source/core/events/EventDispatchMediator.cpp \
Dwebcore_dom.target.linux-x86.mk183 third_party/WebKit/Source/core/events/EventDispatchMediator.cpp \
Dwebcore_dom.target.darwin-arm64.mk183 third_party/WebKit/Source/core/events/EventDispatchMediator.cpp \
Dwebcore_dom.target.linux-arm64.mk183 third_party/WebKit/Source/core/events/EventDispatchMediator.cpp \
Dwebcore_dom.target.linux-mips.mk183 third_party/WebKit/Source/core/events/EventDispatchMediator.cpp \

12