Home | History | Annotate | Download | only in widget

Lines Matching defs:fromY

59         public int fromX, fromY, toX, toY;
61 MoveInfo(RecyclerView.ViewHolder holder, int fromX, int fromY, int toX, int toY) {
64 this.fromY = fromY;
72 public int fromX, fromY, toX, toY;
79 int fromX, int fromY, int toX, int toY) {
82 this.fromY = fromY;
93 + ", fromY=" + fromY
125 animateMoveImpl(moveInfo.holder, moveInfo.fromX, moveInfo.fromY,
255 public boolean animateMove(final RecyclerView.ViewHolder holder, int fromX, int fromY,
259 fromY += (int) holder.itemView.getTranslationY();
262 int deltaY = toY - fromY;
273 mPendingMoves.add(new MoveInfo(holder, fromX, fromY, toX, toY));
277 void animateMoveImpl(final RecyclerView.ViewHolder holder, int fromX, int fromY, int toX, int toY) {
280 final int deltaY = toY - fromY;
320 int fromX, int fromY, int toX, int toY) {
324 return animateMove(oldHolder, fromX, fromY, toX, toY);
331 int deltaY = (int) (toY - fromY - prevTranslationY);
343 mPendingChanges.add(new ChangeInfo(oldHolder, newHolder, fromX, fromY, toX, toY));
357 oldViewAnim.translationY(changeInfo.toY - changeInfo.fromY);