Home
last modified time | relevance | path

Searched refs:mDownPoint (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DEdgeBackGestureHandler.java153 private final PointF mDownPoint = new PointF(); field in EdgeBackGestureHandler
185 mOverviewProxyService.notifyBackAction(true, (int) mDownPoint.x,
186 (int) mDownPoint.y, false /* isButton */, !mIsOnLeftEdge);
195 mOverviewProxyService.notifyBackAction(false, (int) mDownPoint.x,
196 (int) mDownPoint.y, false /* isButton */, !mIsOnLeftEdge);
496 (int) mDownPoint.y, mIsOnLeftEdge in logGesture()
499 (int) mDownPoint.x, (int) mDownPoint.y, in logGesture()
522 mDownPoint.set(ev.getX(), ev.getY()); in onMotionEvent()
547 float dx = Math.abs(ev.getX() - mDownPoint.x); in onMotionEvent()
548 float dy = Math.abs(ev.getY() - mDownPoint.y); in onMotionEvent()
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/
DPipResizeGestureHandler.java88 private final PointF mDownPoint = new PointF(); field in PipResizeGestureHandler
300 mDownPoint.set(x, y); in onMotionEvent()
313 && Math.hypot(x - mDownPoint.x, y - mDownPoint.y) > mTouchSlop) { in onMotionEvent()
316 mDownPoint.set(x, y); in onMotionEvent()
322 mDownPoint.x, mDownPoint.y, currentPipBounds, mCtrlType, mMinSize.x, in onMotionEvent()