Home
last modified time | relevance | path

Searched refs:inputEvent (Results 1 – 5 of 5) sorted by relevance

/external/webkit/Source/WebKit/chromium/src/
DWebPopupMenuImpl.cpp181 bool WebPopupMenuImpl::handleInputEvent(const WebInputEvent& inputEvent) in handleInputEvent() argument
189 switch (inputEvent.type) { in handleInputEvent()
191 MouseMove(*static_cast<const WebMouseEvent*>(&inputEvent)); in handleInputEvent()
195 MouseLeave(*static_cast<const WebMouseEvent*>(&inputEvent)); in handleInputEvent()
199 MouseWheel(*static_cast<const WebMouseWheelEvent*>(&inputEvent)); in handleInputEvent()
203 MouseDown(*static_cast<const WebMouseEvent*>(&inputEvent)); in handleInputEvent()
207 MouseUp(*static_cast<const WebMouseEvent*>(&inputEvent)); in handleInputEvent()
222 return KeyEvent(*static_cast<const WebKeyboardEvent*>(&inputEvent)); in handleInputEvent()
DWebViewImpl.cpp1131 bool WebViewImpl::handleInputEvent(const WebInputEvent& inputEvent) in handleInputEvent() argument
1133 …UserGestureIndicator gestureIndicator(WebInputEvent::isUserGestureEventType(inputEvent.type) ? Def… in handleInputEvent()
1143 m_currentInputEvent = &inputEvent; in handleInputEvent()
1145 if (m_mouseCaptureNode.get() && WebInputEvent::isMouseEventType(inputEvent.type)) { in handleInputEvent()
1150 if (inputEvent.type == WebInputEvent::MouseUp) in handleInputEvent()
1154 switch (inputEvent.type) { in handleInputEvent()
1172 …rmMouseEventBuilder(mainFrameImpl()->frameView(), *static_cast<const WebMouseEvent*>(&inputEvent)), in handleInputEvent()
1173 eventType, static_cast<const WebMouseEvent*>(&inputEvent)->clickCount); in handleInputEvent()
1183 switch (inputEvent.type) { in handleInputEvent()
1185 mouseMove(*static_cast<const WebMouseEvent*>(&inputEvent)); in handleInputEvent()
[all …]
DChromeClientImpl.cpp283 static inline bool currentEventShouldCauseBackgroundTab(const WebInputEvent* inputEvent) in currentEventShouldCauseBackgroundTab() argument
285 if (!inputEvent) in currentEventShouldCauseBackgroundTab()
288 if (inputEvent->type != WebInputEvent::MouseUp) in currentEventShouldCauseBackgroundTab()
291 const WebMouseEvent* mouseEvent = static_cast<const WebMouseEvent*>(inputEvent); in currentEventShouldCauseBackgroundTab()
/external/webkit/Source/WebCore/html/
DHTMLElement.cpp248 … setAttributeEventListener(eventNames().inputEvent, createAttributeEventListener(this, attr)); in parseMappedAttribute()
/external/webkit/Source/WebCore/dom/
DNode.cpp2781 dispatchEvent(Event::create(eventNames().inputEvent, true, false)); in dispatchInputEvent()