Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/widget/
DDefaultItemAnimator.java46 private ArrayList<MoveInfo> mPendingMoves = new ArrayList<>(); field in DefaultItemAnimator
104 boolean movesPending = !mPendingMoves.isEmpty(); in runPendingAnimations()
119 moves.addAll(mPendingMoves); in runPendingAnimations()
121 mPendingMoves.clear(); in runPendingAnimations()
274 mPendingMoves.add(new MoveInfo(holder, fromX, fromY, toX, toY)); in animateMove()
442 for (int i = mPendingMoves.size() - 1; i >= 0; i--) { in endAnimation()
443 MoveInfo moveInfo = mPendingMoves.get(i); in endAnimation()
448 mPendingMoves.remove(i); in endAnimation()
534 || !mPendingMoves.isEmpty() in isRunning()
558 int count = mPendingMoves.size(); in endAnimations()
[all …]