HomeSort by relevance Sort by last modified time
    Searched defs:mLastTouchY (Results 1 - 16 of 16) sorted by null

  /frameworks/support/compat/src/main/java/androidx/core/view/
DragStartHelper.java 73 private int mLastTouchX, mLastTouchY;
134 mLastTouchY = y;
147 if (mLastTouchX == x && mLastTouchY == y) {
152 mLastTouchY = y;
178 point.set(mLastTouchX, mLastTouchY);
  /development/samples/CrossCompatibility/src/com/example/android/touchexample/
VersionedGestureDetector.java 56 float mLastTouchY;
75 mLastTouchY = getActiveY(ev);
83 mListener.onDrag(x - mLastTouchX, y - mLastTouchY);
87 mLastTouchY = y;
131 mLastTouchY = ev.getY(newPointerIndex);
  /frameworks/base/core/java/com/android/internal/widget/
ResolverDrawerLayout.java 104 private float mLastTouchY;
191 mLastTouchY -= dReserved;
275 mInitialTouchY = mLastTouchY = y;
288 mLastTouchY = Math.max(mLastTouchY - mTouchSlop,
289 Math.min(mLastTouchY + dy, mLastTouchY + mTouchSlop));
324 mInitialTouchY = mLastTouchY = y;
340 mInitialTouchY = mLastTouchY = ev.getY();
348 mLastTouchY = Math.max(mLastTouchY - mTouchSlop
    [all...]
RecyclerView.java 425 private int mLastTouchY;
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoTouchListener.java 41 private float mLastTouchY;
171 float tmpDY = (y - mLastTouchY) / dt;
181 mLastTouchY = y;
  /packages/apps/Launcher3/src/com/android/launcher3/views/
RecyclerViewFastScroller.java 87 private float mLastTouchY;
253 mLastTouchY = 0;
286 mLastTouchY = boundedY;
287 setThumbOffsetY((int) mLastTouchY);
  /packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
DragView.java 113 private int mLastTouchY;
588 if (touchX > 0 && touchY > 0 && mLastTouchX > 0 && mLastTouchY > 0
591 mTranslateY.animateToPos(mLastTouchY - touchY);
594 mLastTouchY = touchY;
625 setTranslationY(mLastTouchY - mRegistrationY + mAnimatedShiftY);
  /frameworks/ex/widget/java/com/android/ex/widget/
StaggeredGridView.java 120 private float mLastTouchY;
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;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NotificationPanelView.java 162 private float mLastTouchY;
    [all...]
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
RecyclerView.java 484 private int mLastTouchY;
    [all...]
  /external/robolectric/v3/runtime/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 

Completed in 366 milliseconds