Searched defs:webEvent (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebKit2/Shared/
H A DWebEventConversion.cpp35 WebKit2PlatformMouseEvent(const WebMouseEvent& webEvent) argument
37 switch (webEvent.type()) {
51 switch (webEvent.button()) {
68 m_position = webEvent.position();
69 m_globalPosition = webEvent.globalPosition();
70 m_clickCount = webEvent.clickCount();
71 m_timestamp = webEvent.timestamp();
72 m_shiftKey = webEvent.shiftKey();
73 m_ctrlKey = webEvent.controlKey();
74 m_altKey = webEvent
93 platform(const WebMouseEvent& webEvent) argument
100 WebKit2PlatformWheelEvent(const WebWheelEvent& webEvent) argument
122 platform(const WebWheelEvent& webEvent) argument
129 WebKit2PlatformKeyboardEvent(const WebKeyboardEvent& webEvent) argument
167 platform(const WebKeyboardEvent& webEvent) argument
175 WebKit2PlatformGestureEvent(const WebGestureEvent& webEvent) argument
194 platform(const WebGestureEvent& webEvent) argument
234 WebKit2PlatformTouchEvent(const WebTouchEvent& webEvent) argument
263 platform(const WebTouchEvent& webEvent) argument
[all...]
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/
H A DNetscapePluginX11.cpp283 static inline void setCommonMouseEventFields(XEventType& xEvent, const WebMouseEvent& webEvent, const WebCore::IntPoint& pluginLocation) argument
287 xEvent.time = xTimeStamp(webEvent.timestamp());
288 xEvent.x = webEvent.position().x() - pluginLocation.x();
289 xEvent.y = webEvent.position().y() - pluginLocation.y();
290 xEvent.x_root = webEvent.globalPosition().x();
291 xEvent.y_root = webEvent.globalPosition().y();
292 xEvent.state = xKeyModifiers(webEvent);
296 static inline void setXMotionEventFields(XEvent& xEvent, const WebMouseEvent& webEvent, const WebCore::IntPoint& pluginLocation) argument
299 setCommonMouseEventFields(xMotion, webEvent, pluginLocation);
303 static inline void setXButtonEventFields(XEvent& xEvent, const WebMouseEvent& webEvent, cons argument
322 setXCrossingEventFields(XEvent& xEvent, const WebMouseEvent& webEvent, const WebCore::IntPoint& pluginLocation, int type) argument
396 setXKeyEventFields(XEvent& xEvent, const WebKeyboardEvent& webEvent) argument
[all...]

Completed in 60 milliseconds