Home | History | Annotate | Download | only in widget

Lines Matching defs:mPrefetchArray

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);
130 mPrefetchArray[storagePosition] = layoutPosition;
131 mPrefetchArray[storagePosition + 1] = pixelDistance;
137 if (mPrefetchArray != null) {
140 if (mPrefetchArray[i] == position) return true;
150 if (mPrefetchArray != null) {
151 Arrays.fill(mPrefetchArray, -1);
246 final int distanceToItem = prefetchRegistry.mPrefetchArray[j + 1];
252 task.position = prefetchRegistry.mPrefetchArray[j];
332 final int innerPosition = innerPrefetchRegistry.mPrefetchArray[i];