HomeSort by relevance Sort by last modified time
    Searched defs:mPendingMoves (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/java/com/android/internal/widget/
DefaultItemAnimator.java 46 private ArrayList<MoveInfo> mPendingMoves = new ArrayList<>();
104 boolean movesPending = !mPendingMoves.isEmpty();
119 moves.addAll(mPendingMoves);
121 mPendingMoves.clear();
274 mPendingMoves.add(new MoveInfo(holder, fromX, fromY, toX, toY));
442 for (int i = mPendingMoves.size() - 1; i >= 0; i--) {
443 MoveInfo moveInfo = mPendingMoves.get(i);
448 mPendingMoves.remove(i);
534 || !mPendingMoves.isEmpty()
558 int count = mPendingMoves.size()
    [all...]
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
DefaultItemAnimator.java 45 private ArrayList<MoveInfo> mPendingMoves = new ArrayList<>();
103 boolean movesPending = !mPendingMoves.isEmpty();
118 moves.addAll(mPendingMoves);
120 mPendingMoves.clear();
273 mPendingMoves.add(new MoveInfo(holder, fromX, fromY, toX, toY));
441 for (int i = mPendingMoves.size() - 1; i >= 0; i--) {
442 MoveInfo moveInfo = mPendingMoves.get(i);
447 mPendingMoves.remove(i);
533 || !mPendingMoves.isEmpty()
557 int count = mPendingMoves.size()
    [all...]
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
GridLayoutManager.java 287 private int mPendingMoves;
290 mPendingMoves = initialPendingMoves;
296 if (mPendingMoves < mMaxPendingMoves) {
297 mPendingMoves++;
302 if (mPendingMoves > -mMaxPendingMoves) {
303 mPendingMoves--;
313 if (mStaggeredGrid || mPendingMoves == 0) {
317 int startPos = mPendingMoves > 0 ? mFocusPosition + mNumRows :
319 for (int pos = startPos; mPendingMoves != 0;
320 pos = mPendingMoves > 0 ? pos + mNumRows: pos - mNumRows)
    [all...]

Completed in 91 milliseconds