Searched refs:underlyingEvent (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/events/
H A DUIEventWithKeyState.cpp28 for (Event* e = event; e; e = e->underlyingEvent())
H A DEventDispatcher.h54 static void dispatchSimulatedClick(Node*, Event* underlyingEvent, SimulatedClickMouseEventOptions);
H A DMouseEvent.cpp198 PassRefPtrWillBeRawPtr<SimulatedMouseEvent> SimulatedMouseEvent::create(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView> view, PassRefPtrWillBeRawPtr<Event> underlyingEvent) argument
200 return adoptRefWillBeNoop(new SimulatedMouseEvent(eventType, view, underlyingEvent));
207 SimulatedMouseEvent::SimulatedMouseEvent(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView> view, PassRefPtrWillBeRawPtr<Event> underlyingEvent) argument
211 if (UIEventWithKeyState* keyStateEvent = findEventWithKeyState(underlyingEvent.get())) {
217 setUnderlyingEvent(underlyingEvent);
219 if (this->underlyingEvent() && this->underlyingEvent()->isMouseEvent()) {
220 MouseEvent* mouseEvent = toMouseEvent(this->underlyingEvent());
H A DEventDispatcher.cpp74 void EventDispatcher::dispatchSimulatedClick(Node* node, Event* underlyingEvent, SimulatedClickMouseEventOptions mouseEventOptions) argument
90 EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mouseover, node->document().domWindow(), underlyingEvent)).dispatch();
93 EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mousedown, node->document().domWindow(), underlyingEvent)).dispatch();
95 EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mouseup, node->document().domWindow(), underlyingEvent)).dispatch();
102 EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::click, node->document().domWindow(), underlyingEvent)).dispatch();
H A DMouseEvent.h121 static PassRefPtrWillBeRawPtr<SimulatedMouseEvent> create(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView>, PassRefPtrWillBeRawPtr<Event> underlyingEvent);
127 SimulatedMouseEvent(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView>, PassRefPtrWillBeRawPtr<Event> underlyingEvent);
H A DEvent.cpp209 for (Event* e = ue.get(); e; e = e->underlyingEvent())
H A DEvent.h176 Event* underlyingEvent() const { return m_underlyingEvent.get(); } function in class:blink::Event
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DNavigationAction.cpp70 } 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/
H A DImageInputType.cpp100 if (!event->underlyingEvent() || !event->underlyingEvent()->isMouseEvent())
102 MouseEvent* mouseEvent = toMouseEvent(event->underlyingEvent());
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DEventHandler.h180 bool handleTextInputEvent(const String& text, Event* underlyingEvent = 0, TextEventInputType = TextEventInputKeyboard);
H A DEventHandler.cpp3324 bool EventHandler::handleTextInputEvent(const String& text, Event* underlyingEvent, TextEventInputType inputType) argument
3328 ASSERT(!underlyingEvent || !underlyingEvent->isKeyboardEvent() || toKeyboardEvent(underlyingEvent)->type() == EventTypeNames::keypress);
3334 if (underlyingEvent)
3335 target = underlyingEvent->target();
3342 event->setUnderlyingEvent(underlyingEvent);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DNode.h620 bool dispatchDOMActivateEvent(int detail, PassRefPtrWillBeRawPtr<Event> underlyingEvent);
628 void dispatchSimulatedClick(Event* underlyingEvent, SimulatedClickMouseEventOptions = SendNoEvents);
H A DNode.cpp2133 bool Node::dispatchDOMActivateEvent(int detail, PassRefPtrWillBeRawPtr<Event> underlyingEvent) argument
2137 event->setUnderlyingEvent(underlyingEvent);
2166 void Node::dispatchSimulatedClick(Event* underlyingEvent, SimulatedClickMouseEventOptions eventOptions) argument
2168 EventDispatcher::dispatchSimulatedClick(this, underlyingEvent, eventOptions);

Completed in 742 milliseconds