/external/chromium_org/third_party/WebKit/Source/core/events/ |
D | EventDispatchMediator.cpp | 39 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()
|
D | EventDispatchMediator.h | 45 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
|
D | FocusEvent.cpp | 77 : 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()
|
D | FocusEvent.h | 78 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()
|
D | ScopedEventQueue.h | 42 class EventDispatchMediator; variable 49 void enqueueEventDispatchMediator(PassRefPtrWillBeRawPtr<EventDispatchMediator>); 59 void dispatchEvent(PassRefPtrWillBeRawPtr<EventDispatchMediator>) const; 61 …WillBePersistentHeapVector<RefPtrWillBeMember<EventDispatchMediator> > m_queuedEventDispatchMediat…
|
D | EventDispatcher.h | 37 class EventDispatchMediator; variable 51 static bool dispatchEvent(Node*, PassRefPtrWillBeRawPtr<EventDispatchMediator>); 52 static void dispatchScopedEvent(Node*, PassRefPtrWillBeRawPtr<EventDispatchMediator>);
|
D | ScopedEventQueue.cpp | 62 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()
|
D | TouchEvent.cpp | 118 : EventDispatchMediator(touchEvent) in TouchEventDispatchMediator() 124 return toTouchEvent(EventDispatchMediator::event()); in event()
|
D | GestureEvent.cpp | 103 : EventDispatchMediator(gestureEvent) in GestureEventDispatchMediator() 109 return toGestureEvent(EventDispatchMediator::event()); in event()
|
D | WheelEvent.cpp | 117 return toWheelEvent(EventDispatchMediator::event()); in event() 123 return EventDispatchMediator::dispatchEvent(dispatcher) && !event()->defaultHandled(); in dispatchEvent()
|
D | KeyboardEvent.cpp | 221 : EventDispatchMediator(event) in KeyboardEventDispatchMediator() 228 return EventDispatchMediator::dispatchEvent(dispatcher) && !event()->defaultHandled(); in dispatchEvent()
|
D | GestureEvent.h | 58 class GestureEventDispatchMediator FINAL : public EventDispatchMediator {
|
D | EventDispatcher.cpp | 43 bool EventDispatcher::dispatchEvent(Node* node, PassRefPtrWillBeRawPtr<EventDispatchMediator> media… in dispatchEvent() 67 void EventDispatcher::dispatchScopedEvent(Node* node, PassRefPtrWillBeRawPtr<EventDispatchMediator>… in dispatchScopedEvent()
|
D | TouchEvent.h | 88 class TouchEventDispatchMediator FINAL : public EventDispatchMediator {
|
D | WheelEvent.h | 109 class WheelEventDispatchMediator FINAL : public EventDispatchMediator {
|
D | KeyboardEvent.h | 118 class KeyboardEventDispatchMediator : public EventDispatchMediator {
|
D | MouseEvent.cpp | 237 : EventDispatchMediator(mouseEvent), m_mouseEventType(mouseEventType) in MouseEventDispatchMediator() 243 return toMouseEvent(EventDispatchMediator::event()); in event()
|
D | MouseEvent.h | 130 class MouseEventDispatchMediator FINAL : public EventDispatchMediator {
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | Node.h | 54 class EventDispatchMediator; variable 615 void dispatchScopedEventDispatchMediator(PassRefPtrWillBeRawPtr<EventDispatchMediator>);
|
D | Node.cpp | 2103 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/ |
D | webcore_dom.target.darwin-x86.mk | 183 third_party/WebKit/Source/core/events/EventDispatchMediator.cpp \
|
D | webcore_dom.target.linux-x86.mk | 183 third_party/WebKit/Source/core/events/EventDispatchMediator.cpp \
|
D | webcore_dom.target.darwin-arm64.mk | 183 third_party/WebKit/Source/core/events/EventDispatchMediator.cpp \
|
D | webcore_dom.target.linux-arm64.mk | 183 third_party/WebKit/Source/core/events/EventDispatchMediator.cpp \
|
D | webcore_dom.target.linux-mips.mk | 183 third_party/WebKit/Source/core/events/EventDispatchMediator.cpp \
|