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

  /frameworks/base/core/java/com/android/internal/widget/
GapWorker.java 67 int[] mPrefetchArray;
78 if (mPrefetchArray != null) {
79 Arrays.fill(mPrefetchArray, -1);
116 if (mPrefetchArray == null) {
117 mPrefetchArray = new int[4];
118 Arrays.fill(mPrefetchArray, -1);
119 } else if (storagePosition >= mPrefetchArray.length) {
120 final int[] oldArray = mPrefetchArray;
121 mPrefetchArray = new int[storagePosition * 2];
122 System.arraycopy(oldArray, 0, mPrefetchArray, 0, oldArray.length)
    [all...]
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
GapWorker.java 67 int[] mPrefetchArray;
78 if (mPrefetchArray != null) {
79 Arrays.fill(mPrefetchArray, -1);
120 if (mPrefetchArray == null) {
121 mPrefetchArray = new int[4];
122 Arrays.fill(mPrefetchArray, -1);
123 } else if (storagePosition >= mPrefetchArray.length) {
124 final int[] oldArray = mPrefetchArray;
125 mPrefetchArray = new int[storagePosition * 2];
126 System.arraycopy(oldArray, 0, mPrefetchArray, 0, oldArray.length)
    [all...]

Completed in 155 milliseconds