Lines Matching refs:toY
592 int toY = coord[1]; in animateViewIntoPosition() local
603 toY += Math.round(toScale * tv.getPaddingTop()); in animateViewIntoPosition()
604 toY -= dragView.getMeasuredHeight() * (1 - toScale) / 2; in animateViewIntoPosition()
606 toY -= Math.round(toScale * dragView.getDragVisualizeOffset().y); in animateViewIntoPosition()
612 toY += Math.round(scale * (child.getPaddingTop() - dragView.getDragRegionTop())); in animateViewIntoPosition()
613 toY -= scale * Workspace.DRAG_BITMAP_PADDING / 2; in animateViewIntoPosition()
614 toY -= (1 - scale) * dragView.getMeasuredHeight() / 2; in animateViewIntoPosition()
618 toY -= (Math.round(scale * (dragView.getHeight() - child.getMeasuredHeight()))) / 2; in animateViewIntoPosition()
634 animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, toScale, toScale, in animateViewIntoPosition()
639 final int toX, final int toY, float finalAlpha, float initScaleX, float initScaleY, in animateViewIntoPosition() argument
644 Rect to = new Rect(toX, toY, toX + view.getMeasuredWidth(), toY + view.getMeasuredHeight()); in animateViewIntoPosition()