Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/
DPagedView.java113 private float mTotalMotionX; field in PagedView
890 mTotalMotionX = 0; in onInterceptTouchEvent()
960 mTotalMotionX += Math.abs(mLastMotionX - x); in determineScrollingStart()
1126 mTotalMotionX = 0; in onTouchEvent()
1145 mTotalMotionX += Math.abs(deltaX); in onTouchEvent()
1175 mTotalMotionX += Math.abs(mLastMotionX + mLastMotionXRemainder - x); in onTouchEvent()
1176 boolean isFling = mTotalMotionX > mTouchSlop && shouldFlingForVelocity(velocityX); in onTouchEvent()