Searched refs:mTouchDown (Results 1 – 3 of 3) sorted by relevance
78 private final PointF mTouchDown = new PointF(); field in DeviceLockedInputConsumer134 mTouchDown.set(x, y); in onMotionEvent()151 if (squaredHypot(x - mTouchDown.x, y - mTouchDown.y) > mTouchSlopSquared) { in onMotionEvent()155 float dy = Math.max(mTouchDown.y - y, 0); in onMotionEvent()
87 private Point mTouchDown = new Point(); field in ImageShow525 if (Math.abs(mTouch.y - mTouchDown.y) > Math.abs(mTouch.x - mTouchDown.x)) { in drawCompareImage()548 if (mTouchDown.x - mTouch.x > 0) { in drawCompareImage()553 if (mTouchDown.y - mTouch.y > 0) { in drawCompareImage()634 mTouchDown.x = ex; in onTouchEvent()635 mTouchDown.y = ey; in onTouchEvent()648 float translateX = (mTouch.x - mTouchDown.x) / scaleFactor; in onTouchEvent()649 float translateY = (mTouch.y - mTouchDown.y) / scaleFactor; in onTouchEvent()669 mTouchDown.x = 0; in onTouchEvent()670 mTouchDown.y = 0; in onTouchEvent()
555 private boolean mTouchDown = false; field in LeanbackKeyboardContainer