Searched defs:mPendingMoves (Results 1 - 1 of 1) sorted by path

/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DDefaultItemAnimator.java39 private ArrayList<MoveInfo> mPendingMoves = new ArrayList<MoveInfo>(); field in class:DefaultItemAnimator
98 boolean movesPending = !mPendingMoves.isEmpty();
113 moves.addAll(mPendingMoves);
115 mPendingMoves.clear();
265 mPendingMoves.add(new MoveInfo(holder, fromX, fromY, toX, toY));
426 for (int i = mPendingMoves.size() - 1; i >= 0; i--) {
427 MoveInfo moveInfo = mPendingMoves.get(i);
432 mPendingMoves.remove(i);
506 !mPendingMoves.isEmpty() ||
530 int count = mPendingMoves
[all...]

Completed in 116 milliseconds