HomeSort by relevance Sort by last modified time
    Searched defs:touchPoints (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/platform/
PlatformTouchEvent.h 67 const Vector<PlatformTouchPoint>& touchPoints() const { return m_touchPoints; }
  /external/webkit/WebKitTools/QtLauncher/
main.cpp 138 QList<QTouchEvent::TouchPoint> touchPoints;
226 if (touchPoints.isEmpty())
230 if (touchPoints.size() == 1) {
231 if (touchPoints[0].state() == Qt::TouchPointReleased)
233 else if (touchPoints[0].state() == Qt::TouchPointPressed)
238 touchEv.setTouchPoints(touchPoints);
241 // After sending the event, remove all touchpoints that were released
242 if (touchPoints[0].state() == Qt::TouchPointReleased)
243 touchPoints.removeAt(0);
244 if (touchPoints.size() > 1 && touchPoints[1].state() == Qt::TouchPointReleased
    [all...]

Completed in 66 milliseconds