Searched refs:PlatformTouchPoint (Results 1 – 8 of 8) sorted by relevance
52 class SyntheticInspectorTouchPoint : public WebCore::PlatformTouchPoint {76 void append(const WebCore::PlatformTouchPoint& point) in append()246 PlatformTouchPoint::State convertedState; in dispatchTouchEvent()248 convertedState = PlatformTouchPoint::TouchPressed; in dispatchTouchEvent()250 convertedState = PlatformTouchPoint::TouchReleased; in dispatchTouchEvent()252 convertedState = PlatformTouchPoint::TouchMoved; in dispatchTouchEvent()254 convertedState = PlatformTouchPoint::TouchStationary; in dispatchTouchEvent()256 convertedState = PlatformTouchPoint::TouchCancelled; in dispatchTouchEvent()
174 const Vector<PlatformTouchPoint>& points = event.touchPoints(); in hoveredNodeForEvent()
36 const Vector<PlatformTouchPoint>& touchPoints() const { return m_touchPoints; } in touchPoints()39 Vector<PlatformTouchPoint> m_touchPoints;
30 class PlatformTouchPoint {42 PlatformTouchPoint() in PlatformTouchPoint() function
96 'PlatformTouchPoint.h',
179 class SyntheticTouchPoint : public PlatformTouchPoint {3559 static const AtomicString& eventNameForTouchPointState(PlatformTouchPoint::State state) in eventNameForTouchPointState()3562 case PlatformTouchPoint::TouchReleased: in eventNameForTouchPointState()3564 case PlatformTouchPoint::TouchCancelled: in eventNameForTouchPointState()3566 case PlatformTouchPoint::TouchPressed: in eventNameForTouchPointState()3568 case PlatformTouchPoint::TouchMoved: in eventNameForTouchPointState()3570 case PlatformTouchPoint::TouchStationary: in eventNameForTouchPointState()3614 } changedTouches[PlatformTouchPoint::TouchStateEnd]; in handleTouchEvent()3616 const Vector<PlatformTouchPoint>& points = event.touchPoints(); in handleTouchEvent()3624 const PlatformTouchPoint& point = points[i]; in handleTouchEvent()[all …]
371 inline PlatformTouchPoint::State toPlatformTouchPointState(const WebTouchPoint::State state) in toPlatformTouchPointState()375 return PlatformTouchPoint::TouchReleased; in toPlatformTouchPointState()377 return PlatformTouchPoint::TouchPressed; in toPlatformTouchPointState()379 return PlatformTouchPoint::TouchMoved; in toPlatformTouchPointState()381 return PlatformTouchPoint::TouchStationary; in toPlatformTouchPointState()383 return PlatformTouchPoint::TouchCancelled; in toPlatformTouchPointState()387 return PlatformTouchPoint::TouchReleased; in toPlatformTouchPointState()
86 class PlatformTouchPointBuilder : public WebCore::PlatformTouchPoint {