/external/chromium_org/third_party/WebKit/Source/core/events/ |
D | EventDispatcher.cpp | 43 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() 90 …EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mouseover, node->document().domW… in dispatchSimulatedClick() 93 …EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mousedown, node->document().domW… in dispatchSimulatedClick() 95 …EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mouseup, node->document().domWin… in dispatchSimulatedClick() 102 …EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::click, node->document().domWindo… in dispatchSimulatedClick() 107 bool EventDispatcher::dispatch() in dispatch() [all …]
|
D | FocusEvent.cpp | 81 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()
|
D | FocusEvent.h | 84 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;
|
D | EventDispatchMediator.h | 42 class EventDispatcher; variable 50 virtual bool dispatchEvent(EventDispatcher*) const;
|
D | EventDispatcher.h | 48 class EventDispatcher { 61 EventDispatcher(Node*, PassRefPtrWillBeRawPtr<Event>);
|
D | KeyboardEvent.h | 32 class EventDispatcher; variable 123 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE;
|
D | MouseEvent.h | 34 class EventDispatcher; variable 139 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE;
|
D | EventDispatchMediator.cpp | 54 bool EventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent()
|
D | GestureEvent.h | 70 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE;
|
D | ScopedEventQueue.cpp | 83 EventDispatcher::dispatchEvent(node, mediator); in dispatchEvent()
|
D | TouchEvent.cpp | 127 bool TouchEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent()
|
D | TouchEvent.h | 95 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE;
|
D | GestureEvent.cpp | 112 bool GestureEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent()
|
D | WheelEvent.h | 115 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE;
|
D | MouseEvent.cpp | 246 bool MouseEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent() 280 …EventDispatcher::dispatchEvent(dispatcher->node(), MouseEventDispatchMediator::create(doubleClickE… in dispatchEvent()
|
D | WheelEvent.cpp | 120 bool WheelEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent()
|
D | KeyboardEvent.cpp | 225 bool KeyboardEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const in dispatchEvent()
|
/external/chromium_org/ui/events/ |
D | event_dispatcher.cc | 82 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()
|
D | event_dispatcher.h | 16 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);
|
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 96 friend class EventDispatcher;
|
D | event_handler.cc | 17 EventDispatcher* dispatcher = dispatchers_.top(); in ~EventHandler()
|
/external/chromium_org/third_party/webrtc/base/ |
D | physicalsocketserver.cc | 554 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/ |
D | Node.cpp | 2108 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/ |
D | Checker.h | 526 class EventDispatcher { 529 EventDispatcher() : Mgr(nullptr) { } in EventDispatcher() function 534 static_cast<EventDispatcher<EVENT> *>(checker)->Mgr = &mgr; in _register()
|