Searched refs:mTouchDown (Results 1 – 3 of 3) sorted by relevance
88 private final PointF mTouchDown = new PointF(); field in DeviceLockedInputConsumer144 mTouchDown.set(x, y); in onMotionEvent()161 if (squaredHypot(x - mTouchDown.x, y - mTouchDown.y) > mTouchSlopSquared) { in onMotionEvent()165 float dy = Math.max(mTouchDown.y - y, 0); in onMotionEvent()
87 private Point mTouchDown = new Point(); field in ImageShow524 if (Math.abs(mTouch.y - mTouchDown.y) > Math.abs(mTouch.x - mTouchDown.x)) { in drawCompareImage()547 if (mTouchDown.x - mTouch.x > 0) { in drawCompareImage()552 if (mTouchDown.y - mTouch.y > 0) { in drawCompareImage()633 mTouchDown.x = ex; in onTouchEvent()634 mTouchDown.y = ey; in onTouchEvent()646 float translateX = (mTouch.x - mTouchDown.x) / scaleFactor; in onTouchEvent()647 float translateY = (mTouch.y - mTouchDown.y) / scaleFactor; in onTouchEvent()667 mTouchDown.x = 0; in onTouchEvent()668 mTouchDown.y = 0; in onTouchEvent()
555 private boolean mTouchDown = false; field in LeanbackKeyboardContainer