/external/chromium_org/third_party/WebKit/Source/core/events/ |
D | EventDispatcher.cpp | 43 bool EventDispatcher::dispatchEvent(Node* node, PassRefPtr<EventDispatchMediator> mediator) in dispatchEvent() 48 EventDispatcher dispatcher(node, mediator->event()); in dispatchEvent() 52 EventDispatcher::EventDispatcher(Node* node, PassRefPtr<Event> event) in EventDispatcher() function in WebCore::EventDispatcher 66 void EventDispatcher::dispatchScopedEvent(Node* node, PassRefPtr<EventDispatchMediator> mediator) in dispatchScopedEvent() 73 void EventDispatcher::dispatchSimulatedClick(Node* node, Event* underlyingEvent, SimulatedClickMous… in dispatchSimulatedClick() 86 …EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mouseover, node->document().domW… in dispatchSimulatedClick() 89 …EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mousedown, node->document().domW… in dispatchSimulatedClick() 92 …EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mouseup, node->document().domWin… in dispatchSimulatedClick() 96 …EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::click, node->document().domWindo… in dispatchSimulatedClick() 101 bool EventDispatcher::dispatch() in dispatch() [all …]
|
D | FocusEvent.cpp | 80 bool FocusEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent() 96 bool BlurEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent() 112 bool FocusInEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent() 128 bool FocusOutEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent()
|
D | FocusEvent.h | 82 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE; 91 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE; 100 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE; 109 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE;
|
D | EventDispatchMediator.h | 41 class EventDispatcher; variable 48 virtual bool dispatchEvent(EventDispatcher*) const;
|
D | EventDispatcher.h | 52 class EventDispatcher { 64 EventDispatcher(Node*, PassRefPtr<Event>);
|
D | KeyboardEvent.h | 32 class EventDispatcher; variable 125 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE;
|
D | EventDispatchMediator.cpp | 49 bool EventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent()
|
D | MouseEvent.h | 33 class EventDispatcher; variable 138 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE;
|
D | GestureEvent.h | 71 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE;
|
D | ScopedEventQueue.cpp | 83 EventDispatcher::dispatchEvent(node, mediator); in dispatchEvent()
|
D | TouchEvent.cpp | 107 bool TouchEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent()
|
D | TouchEvent.h | 93 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE;
|
D | WheelEvent.h | 123 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE;
|
D | MouseEvent.cpp | 251 bool MouseEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent() 285 …EventDispatcher::dispatchEvent(dispatcher->node(), MouseEventDispatchMediator::create(doubleClickE… in dispatchEvent()
|
/external/chromium_org/ui/events/ |
D | event_dispatcher.cc | 75 EventDispatcher* old_dispatcher = dispatcher_; in DispatchEventToTarget() 76 EventDispatcher dispatcher(this); in DispatchEventToTarget() 90 EventDispatcher::EventDispatcher(EventDispatcherDelegate* delegate) in EventDispatcher() function in ui::EventDispatcher 95 EventDispatcher::~EventDispatcher() { in ~EventDispatcher() 98 void EventDispatcher::OnHandlerDestroyed(EventHandler* handler) { in OnHandlerDestroyed() 104 void EventDispatcher::ProcessEvent(EventTarget* target, Event* event) { in ProcessEvent() 145 void EventDispatcher::OnDispatcherDelegateDestroyed() { in OnDispatcherDelegateDestroyed() 153 void EventDispatcher::DispatchEventToEventHandlers(EventHandlerList* list, in DispatchEventToEventHandlers() 175 void EventDispatcher::DispatchEvent(EventHandler* handler, Event* event) { in DispatchEvent()
|
D | event_dispatcher.h | 16 class EventDispatcher; variable 66 EventDispatcher* dispatcher_; 72 class EVENTS_EXPORT EventDispatcher { 74 explicit EventDispatcher(EventDispatcherDelegate* delegate); 75 virtual ~EventDispatcher(); 104 DISALLOW_COPY_AND_ASSIGN(EventDispatcher);
|
D | event_handler.h | 19 class EventDispatcher; variable 53 friend class EventDispatcher; 57 std::stack<EventDispatcher*> dispatchers_;
|
D | event_target.h | 18 class EventDispatcher; variable 94 friend class EventDispatcher;
|
D | event_handler.cc | 17 EventDispatcher* dispatcher = dispatchers_.top(); in ~EventHandler()
|
/external/chromium_org/base/message_loop/ |
D | message_pump_gtk.cc | 65 gdk_event_handler_set(&EventDispatcher, this, NULL); in MessagePumpGtk() 115 void MessagePumpGtk::EventDispatcher(GdkEvent* event, gpointer data) { in EventDispatcher() function in base::MessagePumpGtk
|
D | message_pump_gtk.h | 58 static void EventDispatcher(GdkEvent* event, void* data);
|
/external/chromium/third_party/libjingle/source/talk/base/ |
D | physicalsocketserver.cc | 523 class EventDispatcher : public Dispatcher { class 525 EventDispatcher(PhysicalSocketServer* ss) : ss_(ss), fSignaled_(false) { in EventDispatcher() function in talk_base::EventDispatcher 531 virtual ~EventDispatcher() { in ~EventDispatcher() 961 class EventDispatcher : public Dispatcher { class 963 EventDispatcher(PhysicalSocketServer *ss) : ss_(ss) { in EventDispatcher() function in talk_base::EventDispatcher 970 ~EventDispatcher() { in ~EventDispatcher() 1131 class Signaler : public EventDispatcher { 1134 : EventDispatcher(ss), pf_(pf) { in Signaler()
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
D | physicalsocketserver.cc | 566 class EventDispatcher : public Dispatcher { class 568 EventDispatcher(PhysicalSocketServer* ss) : ss_(ss), fSignaled_(false) { in EventDispatcher() function in talk_base::EventDispatcher 574 virtual ~EventDispatcher() { in ~EventDispatcher() 1009 class EventDispatcher : public Dispatcher { class 1011 EventDispatcher(PhysicalSocketServer *ss) : ss_(ss) { in EventDispatcher() function in talk_base::EventDispatcher 1018 ~EventDispatcher() { in ~EventDispatcher() 1185 class Signaler : public EventDispatcher { 1188 : EventDispatcher(ss), pf_(pf) { in Signaler()
|
/external/chromium/base/ |
D | message_pump_glib.cc | 163 gdk_event_handler_set(&EventDispatcher, this, NULL); in MessagePumpForUI() 359 void MessagePumpForUI::EventDispatcher(GdkEvent* event, gpointer data) { in EventDispatcher() function in base::MessagePumpForUI
|
D | message_pump_glib.h | 110 static void EventDispatcher(GdkEvent* event, void* data);
|