Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/window/
DBackTouchTracker.java53 private float mStartThresholdX; field in BackTouchTracker
66 if ((touchX < mStartThresholdX && mSwipeEdge == BackEvent.EDGE_LEFT) in update()
67 || (touchX > mStartThresholdX && mSwipeEdge == BackEvent.EDGE_RIGHT)) { in update()
68 mStartThresholdX = touchX; in update()
69 if ((mSwipeEdge == BackEvent.EDGE_LEFT && mStartThresholdX < mInitTouchX) in update()
70 || (mSwipeEdge == BackEvent.EDGE_RIGHT && mStartThresholdX > mInitTouchX)) { in update()
71 mInitTouchX = mStartThresholdX; in update()
83 mStartThresholdX = mLatestTouchX; in setTriggerBack()
131 mStartThresholdX = mInitTouchX; in setGestureStartLocation()
138 mStartThresholdX = mInitTouchX; in updateStartLocation()
[all …]