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

  /external/chromium_org/third_party/WebKit/Source/core/events/
UIEventWithKeyState.cpp 28 for (Event* e = event; e; e = e->underlyingEvent())
EventDispatcher.h 54 static void dispatchSimulatedClick(Node*, Event* underlyingEvent, SimulatedClickMouseEventOptions);
MouseEvent.cpp 200 PassRefPtrWillBeRawPtr<SimulatedMouseEvent> SimulatedMouseEvent::create(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView> view, PassRefPtrWillBeRawPtr<Event> underlyingEvent)
202 return adoptRefWillBeNoop(new SimulatedMouseEvent(eventType, view, underlyingEvent));
209 SimulatedMouseEvent::SimulatedMouseEvent(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView> view, PassRefPtrWillBeRawPtr<Event> underlyingEvent)
214 if (UIEventWithKeyState* keyStateEvent = findEventWithKeyState(underlyingEvent.get())) {
220 setUnderlyingEvent(underlyingEvent);
222 if (this->underlyingEvent() && this->underlyingEvent()->isMouseEvent()) {
223 MouseEvent* mouseEvent = toMouseEvent(this->underlyingEvent());
EventDispatcher.cpp 76 void EventDispatcher::dispatchSimulatedClick(Node* node, Event* underlyingEvent, SimulatedClickMouseEventOptions mouseEventOptions)
89 EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mouseover, node->document().domWindow(), underlyingEvent)).dispatch();
92 EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mousedown, node->document().domWindow(), underlyingEvent)).dispatch();
94 EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mouseup, node->document().domWindow(), underlyingEvent)).dispatch();
101 EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::click, node->document().domWindow(), underlyingEvent)).dispatch();
MouseEvent.h 116 static PassRefPtrWillBeRawPtr<SimulatedMouseEvent> create(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView>, PassRefPtrWillBeRawPtr<Event> underlyingEvent);
122 SimulatedMouseEvent(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView>, PassRefPtrWillBeRawPtr<Event> underlyingEvent);
Event.cpp 207 for (Event* e = ue.get(); e; e = e->underlyingEvent())
Event.h 174 Event* underlyingEvent() const { return m_underlyingEvent.get(); }
  /external/chromium_org/third_party/WebKit/Source/core/loader/
NavigationAction.cpp 70 } else if (m_type == NavigationTypeFormSubmitted && event && event->underlyingEvent() && event->underlyingEvent()->isMouseEvent()) {
71 mouseEvent = toMouseEvent(event->underlyingEvent());
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
ImageInputType.cpp 100 if (!event->underlyingEvent() || !event->underlyingEvent()->isMouseEvent())
102 MouseEvent* mouseEvent = toMouseEvent(event->underlyingEvent());
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Node.h 638 bool dispatchDOMActivateEvent(int detail, PassRefPtrWillBeRawPtr<Event> underlyingEvent);
646 void dispatchSimulatedClick(Event* underlyingEvent, SimulatedClickMouseEventOptions = SendNoEvents);
    [all...]
Node.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventHandler.h 167 bool handleTextInputEvent(const String& text, Event* underlyingEvent = 0, TextEventInputType = TextEventInputKeyboard);
EventHandler.cpp     [all...]

Completed in 308 milliseconds