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

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

Completed in 232 milliseconds