Searched refs:mLastTouch (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DDragController.java112 private int mLastTouch[] = new int[2]; field in class:DragController
496 Math.sqrt(Math.pow(mLastTouch[0] - x, 2) + Math.pow(mLastTouch[1] - y, 2));
497 mLastTouch[0] = x;
498 mLastTouch[1] = y;
504 DropTarget dropTarget = findDropTarget(mLastTouch[0], mLastTouch[1], dummyCoordinates);
812 checkScrollState(mLastTouch[0], mLastTouch[1]);
/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
H A DDragController.java86 @Thunk int mLastTouch[] = new int[2]; field in class:DragController
205 mLastTouch[0] = mMotionDownX;
206 mLastTouch[1] = mMotionDownY;
459 mDistanceSinceScroll += Math.hypot(mLastTouch[0] - x, mLastTouch[1] - y);
460 mLastTouch[0] = x;
461 mLastTouch[1] = y;
475 DropTarget dropTarget = findDropTarget(mLastTouch[0], mLastTouch[1], dummyCoordinates);

Completed in 118 milliseconds