Home
last modified time | relevance | path

Searched refs:EventDispatcher (Results 1 – 25 of 41) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/events/
DEventDispatcher.cpp43 bool EventDispatcher::dispatchEvent(Node* node, PassRefPtrWillBeRawPtr<EventDispatchMediator> media… in dispatchEvent()
49 EventDispatcher dispatcher(node, mediator->event()); in dispatchEvent()
53 EventDispatcher::EventDispatcher(Node* node, PassRefPtrWillBeRawPtr<Event> event) in EventDispatcher() function in blink::EventDispatcher
67 void EventDispatcher::dispatchScopedEvent(Node* node, PassRefPtrWillBeRawPtr<EventDispatchMediator>… in dispatchScopedEvent()
74 void EventDispatcher::dispatchSimulatedClick(Node* node, Event* underlyingEvent, SimulatedClickMous… in dispatchSimulatedClick()
90EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mouseover, node->document().domW… in dispatchSimulatedClick()
93EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mousedown, node->document().domW… in dispatchSimulatedClick()
95EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mouseup, node->document().domWin… in dispatchSimulatedClick()
102EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::click, node->document().domWindo… in dispatchSimulatedClick()
107 bool EventDispatcher::dispatch() in dispatch()
[all …]
DFocusEvent.cpp81 bool FocusEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent()
97 bool BlurEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent()
113 bool FocusInEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent()
129 bool FocusOutEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent()
DFocusEvent.h84 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE;
93 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE;
102 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE;
111 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE;
DEventDispatchMediator.h42 class EventDispatcher; variable
50 virtual bool dispatchEvent(EventDispatcher*) const;
DEventDispatcher.h48 class EventDispatcher {
61 EventDispatcher(Node*, PassRefPtrWillBeRawPtr<Event>);
DKeyboardEvent.h32 class EventDispatcher; variable
123 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE;
DMouseEvent.h34 class EventDispatcher; variable
139 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE;
DEventDispatchMediator.cpp54 bool EventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent()
DGestureEvent.h70 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE;
DScopedEventQueue.cpp83 EventDispatcher::dispatchEvent(node, mediator); in dispatchEvent()
DTouchEvent.cpp127 bool TouchEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent()
DTouchEvent.h95 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE;
DGestureEvent.cpp112 bool GestureEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent()
DWheelEvent.h115 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE;
DMouseEvent.cpp246 bool MouseEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent()
280EventDispatcher::dispatchEvent(dispatcher->node(), MouseEventDispatchMediator::create(doubleClickE… in dispatchEvent()
DWheelEvent.cpp120 bool WheelEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent()
DKeyboardEvent.cpp225 bool KeyboardEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent()
/external/chromium_org/ui/events/
Devent_dispatcher.cc82 EventDispatcher* old_dispatcher = dispatcher_; in DispatchEventToTarget()
83 EventDispatcher dispatcher(this); in DispatchEventToTarget()
101 EventDispatcher::EventDispatcher(EventDispatcherDelegate* delegate) in EventDispatcher() function in ui::EventDispatcher
106 EventDispatcher::~EventDispatcher() { in ~EventDispatcher()
109 void EventDispatcher::OnHandlerDestroyed(EventHandler* handler) { in OnHandlerDestroyed()
115 void EventDispatcher::ProcessEvent(EventTarget* target, Event* event) { in ProcessEvent()
151 void EventDispatcher::OnDispatcherDelegateDestroyed() { in OnDispatcherDelegateDestroyed()
158 void EventDispatcher::DispatchEventToEventHandlers(EventHandlerList* list, in DispatchEventToEventHandlers()
180 void EventDispatcher::DispatchEvent(EventHandler* handler, Event* event) { in DispatchEvent()
Devent_dispatcher.h16 class EventDispatcher; variable
67 EventDispatcher* dispatcher_;
73 class EVENTS_EXPORT EventDispatcher {
75 explicit EventDispatcher(EventDispatcherDelegate* delegate);
76 virtual ~EventDispatcher();
102 DISALLOW_COPY_AND_ASSIGN(EventDispatcher);
Devent_handler.h19 class EventDispatcher; variable
53 friend class EventDispatcher;
57 std::stack<EventDispatcher*> dispatchers_;
Devent_target.h18 class EventDispatcher; variable
96 friend class EventDispatcher;
Devent_handler.cc17 EventDispatcher* dispatcher = dispatchers_.top(); in ~EventHandler()
/external/chromium_org/third_party/webrtc/base/
Dphysicalsocketserver.cc554 class EventDispatcher : public Dispatcher { class
556 EventDispatcher(PhysicalSocketServer* ss) : ss_(ss), fSignaled_(false) { in EventDispatcher() function in rtc::EventDispatcher
562 virtual ~EventDispatcher() { in ~EventDispatcher()
997 class EventDispatcher : public Dispatcher { class
999 EventDispatcher(PhysicalSocketServer *ss) : ss_(ss) { in EventDispatcher() function in rtc::EventDispatcher
1006 ~EventDispatcher() { in ~EventDispatcher()
1173 class Signaler : public EventDispatcher {
1176 : EventDispatcher(ss), pf_(pf) { in Signaler()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DNode.cpp2108 EventDispatcher::dispatchScopedEvent(this, eventDispatchMediator); in dispatchScopedEventDispatchMediator()
2114 …return EventDispatcher::dispatchEvent(this, MouseEventDispatchMediator::create(static_pointer_cast… in dispatchEvent()
2117 return EventDispatcher::dispatchEvent(this, EventDispatchMediator::create(event)); in dispatchEvent()
2144 …return EventDispatcher::dispatchEvent(this, KeyboardEventDispatchMediator::create(KeyboardEvent::c… in dispatchKeyEvent()
2150 …return EventDispatcher::dispatchEvent(this, MouseEventDispatchMediator::create(MouseEvent::create(… in dispatchMouseEvent()
2158 return EventDispatcher::dispatchEvent(this, GestureEventDispatchMediator::create(gestureEvent)); in dispatchGestureEvent()
2163 return EventDispatcher::dispatchEvent(this, TouchEventDispatchMediator::create(event)); in dispatchTouchEvent()
2168 EventDispatcher::dispatchSimulatedClick(this, underlyingEvent, eventOptions); in dispatchSimulatedClick()
2173 …return EventDispatcher::dispatchEvent(this, WheelEventDispatchMediator::create(event, document().d… in dispatchWheelEvent()
/external/clang/include/clang/StaticAnalyzer/Core/
DChecker.h526 class EventDispatcher {
529 EventDispatcher() : Mgr(nullptr) { } in EventDispatcher() function
534 static_cast<EventDispatcher<EVENT> *>(checker)->Mgr = &mgr; in _register()

12