Searched refs:mLastTouchY (Results 1 - 5 of 5) sorted by relevance

/frameworks/support/v13/java/android/support/v13/view/
H A DDragStartHelper.java75 private int mLastTouchX, mLastTouchY; field in class:DragStartHelper
133 mLastTouchY = (int) event.getY();
157 point.set(mLastTouchX, mLastTouchY);
/frameworks/base/core/java/com/android/internal/widget/
H A DResolverDrawerLayout.java101 private float mLastTouchY; field in class:ResolverDrawerLayout
177 mLastTouchY -= dReserved;
247 mInitialTouchY = mLastTouchY = y;
260 mLastTouchY = Math.max(mLastTouchY - mTouchSlop,
261 Math.min(mLastTouchY + dy, mLastTouchY + mTouchSlop));
296 mInitialTouchY = mLastTouchY = y;
312 mInitialTouchY = mLastTouchY = ev.getY();
320 mLastTouchY
[all...]
/frameworks/ex/widget/java/com/android/ex/widget/
H A DStaggeredGridView.java120 private float mLastTouchY; field in class:StaggeredGridView
286 mLastTouchY = ev.getY();
305 final float dy = y - mLastTouchY + mTouchRemainderY;
327 mLastTouchY = ev.getY();
341 final float dy = y - mLastTouchY + mTouchRemainderY;
350 mLastTouchY = y;
371 mLastTouchY = 0;
545 final int dy = (int) (y - mLastTouchY);
546 mLastTouchY = y;
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java386 private int mLastTouchY; field in class:RecyclerView
1567 mLastTouchY -= mScrollOffset[1];
2467 mInitialTouchY = mLastTouchY = (int) (e.getY() + 0.5f);
2490 mInitialTouchY = mLastTouchY = (int) (MotionEventCompat.getY(e, actionIndex) + 0.5f);
2512 mLastTouchY = mInitialTouchY + mTouchSlop * (dy < 0 ? -1 : 1);
2582 mInitialTouchY = mLastTouchY = (int) (e.getY() + 0.5f);
2597 mInitialTouchY = mLastTouchY = (int) (MotionEventCompat.getY(e, actionIndex) + 0.5f);
2611 int dy = mLastTouchY - y;
2647 mLastTouchY = y - mScrollOffset[1];
2709 mInitialTouchY = mLastTouchY
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationPanelView.java132 private float mLastTouchY; field in class:NotificationPanelView
1275 mLastTouchY = event.getY();

Completed in 210 milliseconds