Searched refs:mPrefetchArray (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DGapWorker.java67 int[] mPrefetchArray; field in class:GapWorker.LayoutPrefetchRegistryImpl
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,
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DGapWorker.java66 int[] mPrefetchArray; field in class:GapWorker.LayoutPrefetchRegistryImpl
77 if (mPrefetchArray != null) {
78 Arrays.fill(mPrefetchArray, -1);
119 if (mPrefetchArray == null) {
120 mPrefetchArray = new int[4];
121 Arrays.fill(mPrefetchArray, -1);
122 } else if (storagePosition >= mPrefetchArray.length) {
123 final int[] oldArray = mPrefetchArray;
124 mPrefetchArray = new int[storagePosition * 2];
125 System.arraycopy(oldArray, 0, mPrefetchArray,
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DRecyclerViewCacheTest.java687 int prefetchTarget = mRecyclerView.mPrefetchRegistry.mPrefetchArray[0];

Completed in 436 milliseconds