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

  /external/webkit/Source/WebKit2/Shared/
WebPlatformTouchPoint.cpp 38 WebPlatformTouchPoint::WebPlatformTouchPoint(unsigned id, TouchPointState state, const IntPoint& screenPosition, const IntPoint& position)
46 void WebPlatformTouchPoint::encode(CoreIPC::ArgumentEncoder* encoder) const
51 bool WebPlatformTouchPoint::decode(CoreIPC::ArgumentDecoder* decoder, WebPlatformTouchPoint& t)
WebEvent.h 273 class WebPlatformTouchPoint {
283 WebPlatformTouchPoint() { }
285 WebPlatformTouchPoint(uint32_t id, TouchPointState, const WebCore::IntPoint& screenPosition, const WebCore::IntPoint& position);
296 static bool decode(CoreIPC::ArgumentDecoder*, WebPlatformTouchPoint&);
312 WebTouchEvent(Type, Vector<WebPlatformTouchPoint>, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, Modifiers, double timestamp);
314 const Vector<WebPlatformTouchPoint>& touchPoints() const { return m_touchPoints; }
322 Vector<WebPlatformTouchPoint> m_touchPoints;
WebTouchEvent.cpp 36 WebTouchEvent::WebTouchEvent(WebEvent::Type type, Vector<WebPlatformTouchPoint> touchPoints, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, Modifiers modifiers, double timestamp)
WebEventConversion.cpp 203 WebKit2PlatformTouchPoint(const WebPlatformTouchPoint& webTouchPoint)
208 case WebPlatformTouchPoint::TouchReleased:
211 case WebPlatformTouchPoint::TouchPressed:
214 case WebPlatformTouchPoint::TouchMoved:
217 case WebPlatformTouchPoint::TouchStationary:
220 case WebPlatformTouchPoint::TouchCancelled:
  /external/webkit/Source/WebKit2/Shared/qt/
WebEventFactoryQt.cpp 170 WebPlatformTouchPoint::TouchPointState state = static_cast<WebPlatformTouchPoint::TouchPointState>(0);
177 Vector<WebPlatformTouchPoint> m_touchPoints;
182 state = WebPlatformTouchPoint::TouchReleased;
185 state = WebPlatformTouchPoint::TouchMoved;
188 state = WebPlatformTouchPoint::TouchPressed;
191 state = WebPlatformTouchPoint::TouchStationary;
198 m_touchPoints.append(WebPlatformTouchPoint(id, state, points.at(i).screenPos().toPoint(), points.at(i).pos().toPoint()));

Completed in 95 milliseconds