Searched defs:mLastTouchX (Results 1 - 3 of 3) sorted by relevance

/frameworks/support/v13/java/android/support/v13/view/
H A DDragStartHelper.java75 private int mLastTouchX, mLastTouchY; field in class:DragStartHelper
132 mLastTouchX = (int) event.getX();
157 point.set(mLastTouchX, mLastTouchY);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationPanelView.java131 private float mLastTouchX; field in class:NotificationPanelView
1274 mLastTouchX = event.getX();
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java385 private int mLastTouchX; field in class:RecyclerView
1566 mLastTouchX -= mScrollOffset[0];
2466 mInitialTouchX = mLastTouchX = (int) (e.getX() + 0.5f);
2489 mInitialTouchX = mLastTouchX = (int) (MotionEventCompat.getX(e, actionIndex) + 0.5f);
2508 mLastTouchX = mInitialTouchX + mTouchSlop * (dx < 0 ? -1 : 1);
2581 mInitialTouchX = mLastTouchX = (int) (e.getX() + 0.5f);
2596 mInitialTouchX = mLastTouchX = (int) (MotionEventCompat.getX(e, actionIndex) + 0.5f);
2610 int dx = mLastTouchX - x;
2646 mLastTouchX = x - mScrollOffset[0];
2708 mInitialTouchX = mLastTouchX
[all...]

Completed in 139 milliseconds