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
889 mTotalMotionX = 0; in onInterceptTouchEvent()
956 mTotalMotionX += Math.abs(mLastMotionX - x); in determineScrollingStart()
1118 mTotalMotionX = 0; in onTouchEvent()
1137 mTotalMotionX += Math.abs(deltaX); in onTouchEvent()
1167 mTotalMotionX += Math.abs(mLastMotionX + mLastMotionXRemainder - x); in onTouchEvent()
1168 boolean isFling = mTotalMotionX > mTouchSlop && shouldFlingForVelocity(velocityX); in onTouchEvent()