Home
last modified time | relevance | path

Searched refs:mMotionDown (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/secondarydisplay/
DSecondaryDragController.java64 mLastTouch.x = mMotionDown.x = mOptions.simulatedDndStartPoint.x; in startDrag()
65 mLastTouch.y = mMotionDown.y = mOptions.simulatedDndStartPoint.y; in startDrag()
68 final int registrationX = mMotionDown.x - dragLayerX; in startDrag()
69 final int registrationY = mMotionDown.y - dragLayerY; in startDrag()
108 mDragObject.xOffset = mMotionDown.x - (dragLayerX + dragRegionLeft); in startDrag()
109 mDragObject.yOffset = mMotionDown.y - (dragLayerY + dragRegionTop); in startDrag()
/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
DLauncherDragController.java77 mLastTouch.x = mMotionDown.x = mOptions.simulatedDndStartPoint.x; in startDrag()
78 mLastTouch.y = mMotionDown.y = mOptions.simulatedDndStartPoint.y; in startDrag()
81 final int registrationX = mMotionDown.x - dragLayerX; in startDrag()
82 final int registrationY = mMotionDown.y - dragLayerY; in startDrag()
125 mDragObject.xOffset = mMotionDown.x - (dragLayerX + dragRegionLeft); in startDrag()
126 mDragObject.yOffset = mMotionDown.y - (dragLayerY + dragRegionTop); in startDrag()
DDragController.java76 protected final Point mMotionDown = new Point(); field in DragController
334 mDragObject.dragView.animateTo(mMotionDown.x, mMotionDown.y, onCompleteRunnable, duration); in animateDragViewToOriginalPosition()
414 mMotionDown.set(dragLayerPos.x, dragLayerPos.y); in onControllerInterceptTouchEvent()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/
DTaskbarDragController.java267 mRegistrationX = mMotionDown.x - dragLayerX; in startDrag()
268 mRegistrationY = mMotionDown.y - dragLayerY; in startDrag()
294 mDragObject.xOffset = mMotionDown.x - (dragLayerX + dragRegionLeft); in startDrag()
295 mDragObject.yOffset = mMotionDown.y - (dragLayerY + dragRegionTop); in startDrag()