Searched defs:mLastTouchY (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DResolverDrawerLayout.java80 private float mLastTouchY; field in class:ResolverDrawerLayout
165 mInitialTouchY = mLastTouchY = y;
178 mLastTouchY = Math.max(mLastTouchY - mTouchSlop,
179 Math.min(mLastTouchY + dy, mLastTouchY + mTouchSlop));
214 mInitialTouchY = mLastTouchY = y;
232 mInitialTouchY = mLastTouchY = ev.getY();
240 mLastTouchY = Math.max(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/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationPanelView.java116 private float mLastTouchY; field in class:NotificationPanelView
746 mInitialTouchY = mLastTouchY;
1105 mLastTouchY = event.getY();
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java226 private int mLastTouchY; field in class:RecyclerView
1497 mInitialTouchY = mLastTouchY = (int) (e.getY() + 0.5f);
1508 mInitialTouchY = mLastTouchY = (int) (MotionEventCompat.getY(e, actionIndex) + 0.5f);
1530 mLastTouchY = mInitialTouchY + mTouchSlop * (dy < 0 ? -1 : 1);
1577 mInitialTouchY = mLastTouchY = (int) (e.getY() + 0.5f);
1583 mInitialTouchY = mLastTouchY = (int) (MotionEventCompat.getY(e, actionIndex) + 0.5f);
1605 mLastTouchY = mInitialTouchY + mTouchSlop * (dy < 0 ? -1 : 1);
1615 final int dy = y - mLastTouchY;
1620 mLastTouchY = y;
1663 mInitialTouchY = mLastTouchY
[all...]

Completed in 200 milliseconds