Home
last modified time | relevance | path

Searched refs:fromY (Results 1 – 8 of 8) sorted by relevance

/packages/apps/Car/Dialer/src/com/android/car/dialer/
DStrequentsItemAnimator.java51 public int fromX, fromY, toX, toY; field in StrequentsItemAnimator.MoveInfo
53 private MoveInfo(ViewHolder holder, int fromX, int fromY, int toX, int toY) { in MoveInfo() argument
56 this.fromY = fromY; in MoveInfo()
64 public int fromX, fromY, toX, toY; field in StrequentsItemAnimator.ChangeInfo
71 int fromX, int fromY, int toX, int toY) { in ChangeInfo() argument
74 this.fromY = fromY; in ChangeInfo()
85 ", fromY=" + fromY + in toString()
117 animateMoveImpl(moveInfo.holder, moveInfo.fromX, moveInfo.fromY, in runPendingAnimations()
254 public boolean animateMove(final ViewHolder holder, int fromX, int fromY, in animateMove() argument
258 fromY += ViewCompat.getTranslationY(holder.itemView); in animateMove()
[all …]
/packages/apps/Settings/src/com/android/settings/dashboard/
DDashboardItemAnimator.java26 public boolean animateChange(ViewHolder oldHolder, ViewHolder newHolder, int fromX, int fromY, in animateChange() argument
34 fromY += ViewCompat.getTranslationY(oldHolder.itemView); in animateChange()
37 if (fromX == toX && fromY == toY) { in animateChange()
42 return super.animateChange(oldHolder, newHolder, fromX, fromY, toX, toY); in animateChange()
/packages/apps/Launcher2/src/com/android/launcher2/
DDragLayer.java464 final int fromY = r.top; in animateViewIntoPosition() local
466 animateViewIntoPosition(dragView, fromX, fromY, pos[0], pos[1], alpha, 1, 1, scaleX, scaleY, in animateViewIntoPosition()
519 final int fromY = r.top; in animateViewIntoPosition() local
529 animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, scale, scale, in animateViewIntoPosition()
533 public void animateViewIntoPosition(final DragView view, final int fromX, final int fromY, in animateViewIntoPosition() argument
537 Rect from = new Rect(fromX, fromY, fromX + in animateViewIntoPosition()
538 view.getMeasuredWidth(), fromY + view.getMeasuredHeight()); in animateViewIntoPosition()
/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
DDragLayer.java568 final int fromY = r.top; in animateViewIntoPosition() local
570 animateViewIntoPosition(dragView, fromX, fromY, pos[0], pos[1], alpha, 1, 1, scaleX, scaleY, in animateViewIntoPosition()
632 final int fromY = r.top; in animateViewIntoPosition() local
642 animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, toScale, toScale, in animateViewIntoPosition()
646 public void animateViewIntoPosition(final DragView view, final int fromX, final int fromY, in animateViewIntoPosition() argument
650 Rect from = new Rect(fromX, fromY, fromX + in animateViewIntoPosition()
651 view.getMeasuredWidth(), fromY + view.getMeasuredHeight()); in animateViewIntoPosition()
/packages/services/Car/car-support-lib/src/android/support/car/ui/
DCarItemAnimator.java35 RecyclerView.ViewHolder newHolder, int fromX, int fromY, int toX, int toY) { in animateChange() argument
43 boolean ret = super.animateChange(oldHolder, newHolder, fromX, fromY, toX, toY); in animateChange()
/packages/apps/Contacts/src/com/android/contacts/editor/
DEditorAnimator.java203 private static void translateViews(List<Animator> animators, List<View> views, float fromY, in translateViews() argument
208 ObjectAnimator.ofFloat(child, View.TRANSLATION_Y, fromY, toY); in translateViews()
/packages/apps/DeskClock/src/com/android/deskclock/
DItemAnimator.java103 public boolean animateMove(final ViewHolder holder, int fromX, int fromY, int toX, int toY) { in animateMove() argument
107 final int deltaY = toY - fromY; in animateMove()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
DImageShow.java687 int fromY, int toY, int delay) { in startAnimTranslation() argument
688 if (fromX == toX && fromY == toY) { in startAnimTranslation()
698 mAnimatorTranslateY = ValueAnimator.ofInt(fromY, toY); in startAnimTranslation()