Lines Matching refs:toY
574 int toY = coord[1]; in animateViewIntoPosition() local
585 toY += Math.round(toScale * tv.getPaddingTop()); in animateViewIntoPosition()
586 toY -= dragView.getMeasuredHeight() * (1 - toScale) / 2; in animateViewIntoPosition()
588 toY -= Math.round(toScale * dragView.getDragVisualizeOffset().y); in animateViewIntoPosition()
594 toY += Math.round(scale * (child.getPaddingTop() - dragView.getDragRegionTop())); in animateViewIntoPosition()
595 toY -= scale * Workspace.DRAG_BITMAP_PADDING / 2; in animateViewIntoPosition()
596 toY -= (1 - scale) * dragView.getMeasuredHeight() / 2; in animateViewIntoPosition()
600 toY -= (Math.round(scale * (dragView.getHeight() - child.getMeasuredHeight()))) / 2; in animateViewIntoPosition()
616 animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, toScale, toScale, in animateViewIntoPosition()
621 final int toX, final int toY, float finalAlpha, float initScaleX, float initScaleY, in animateViewIntoPosition() argument
626 Rect to = new Rect(toX, toY, toX + view.getMeasuredWidth(), toY + view.getMeasuredHeight()); in animateViewIntoPosition()