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

/frameworks/base/core/java/com/android/internal/widget/
H A DResolverDrawerLayout.java88 private float mLastTouchY; field in class:ResolverDrawerLayout
183 mInitialTouchY = mLastTouchY = y;
196 mLastTouchY = Math.max(mLastTouchY - mTouchSlop,
197 Math.min(mLastTouchY + dy, mLastTouchY + mTouchSlop));
232 mInitialTouchY = mLastTouchY = y;
248 mInitialTouchY = mLastTouchY = ev.getY();
256 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/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java355 private int mLastTouchY; field in class:RecyclerView
1434 mLastTouchY -= mScrollOffset[1];
2160 mInitialTouchY = mLastTouchY = (int) (e.getY() + 0.5f);
2180 mInitialTouchY = mLastTouchY = (int) (MotionEventCompat.getY(e, actionIndex) + 0.5f);
2202 mLastTouchY = mInitialTouchY + mTouchSlop * (dy < 0 ? -1 : 1);
2276 mInitialTouchY = mLastTouchY = (int) (e.getY() + 0.5f);
2291 mInitialTouchY = mLastTouchY = (int) (MotionEventCompat.getY(e, actionIndex) + 0.5f);
2305 int dy = mLastTouchY - y;
2345 mLastTouchY = y - mScrollOffset[1];
2407 mInitialTouchY = mLastTouchY
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationPanelView.java137 private float mLastTouchY; field in class:NotificationPanelView
932 mInitialTouchY = mLastTouchY;
1395 mLastTouchY = event.getY();

Completed in 65 milliseconds