HomeSort by relevance Sort by last modified time
    Searched refs:underlyingEvent (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
UIEventWithKeyState.cpp 28 for (Event* e = event; e; e = e->underlyingEvent())
EventDispatcher.h 57 static void dispatchSimulatedClick(Node*, Event* underlyingEvent, SimulatedClickMouseEventOptions, SimulatedClickVisualOptions);
MouseEvent.cpp 209 PassRefPtr<SimulatedMouseEvent> SimulatedMouseEvent::create(const AtomicString& eventType, PassRefPtr<AbstractView> view, PassRefPtr<Event> underlyingEvent)
211 return adoptRef(new SimulatedMouseEvent(eventType, view, underlyingEvent));
218 SimulatedMouseEvent::SimulatedMouseEvent(const AtomicString& eventType, PassRefPtr<AbstractView> view, PassRefPtr<Event> underlyingEvent)
223 if (UIEventWithKeyState* keyStateEvent = findEventWithKeyState(underlyingEvent.get())) {
229 setUnderlyingEvent(underlyingEvent);
231 if (this->underlyingEvent() && this->underlyingEvent()->isMouseEvent()) {
232 MouseEvent* mouseEvent = toMouseEvent(this->underlyingEvent());
EventDispatcher.cpp 74 void EventDispatcher::dispatchSimulatedClick(Node* node, Event* underlyingEvent, SimulatedClickMouseEventOptions mouseEventOptions, SimulatedClickVisualOptions visualOptions)
87 EventDispatcher(node, SimulatedMouseEvent::create(eventNames().mouseoverEvent, node->document()->defaultView(), underlyingEvent)).dispatch();
90 EventDispatcher(node, SimulatedMouseEvent::create(eventNames().mousedownEvent, node->document()->defaultView(), underlyingEvent)).dispatch();
93 EventDispatcher(node, SimulatedMouseEvent::create(eventNames().mouseupEvent, node->document()->defaultView(), underlyingEvent)).dispatch();
97 EventDispatcher(node, SimulatedMouseEvent::create(eventNames().clickEvent, node->document()->defaultView(), underlyingEvent)).dispatch();
MouseEvent.h 121 static PassRefPtr<SimulatedMouseEvent> create(const AtomicString& eventType, PassRefPtr<AbstractView>, PassRefPtr<Event> underlyingEvent);
125 SimulatedMouseEvent(const AtomicString& eventType, PassRefPtr<AbstractView>, PassRefPtr<Event> underlyingEvent);
Event.cpp 187 for (Event* e = ue.get(); e; e = e->underlyingEvent())
Event.h 155 Event* underlyingEvent() const { return m_underlyingEvent.get(); }
KeyboardEvent.cpp 218 for (Event* e = event; e; e = e->underlyingEvent()) {
Node.h 671 bool dispatchDOMActivateEvent(int detail, PassRefPtr<Event> underlyingEvent);
679 void dispatchSimulatedClick(Event* underlyingEvent, SimulatedClickMouseEventOptions = SendNoEvents, SimulatedClickVisualOptions = ShowPressedLook);
    [all...]
Node.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
NavigationAction.cpp 96 else if (m_type == NavigationTypeFormSubmitted && m_event && m_event->underlyingEvent() && m_event->underlyingEvent()->isMouseEvent())
97 event = toMouseEvent(m_event->underlyingEvent());
  /external/chromium_org/third_party/WebKit/Source/core/html/
ImageInputType.cpp 94 if (event->underlyingEvent() && event->underlyingEvent()->isMouseEvent()) {
95 MouseEvent* mouseEvent = toMouseEvent(event->underlyingEvent());
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventHandler.h 182 bool handleTextInputEvent(const String& text, Event* underlyingEvent = 0, TextEventInputType = TextEventInputKeyboard);
EventHandler.cpp     [all...]

Completed in 454 milliseconds