Home
last modified time | relevance | path

Searched refs:outPageScrolls (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/
DPagedView.java805 protected boolean getPageScrolls(int[] outPageScrolls, boolean layoutChildren, in getPageScrolls() argument
833 if (outPageScrolls[i] != pageScroll in getPageScrolls()
836 outPageScrolls[i] = pageScroll; in getPageScrolls()
852 int adjustedScroll = outPageScrolls[getLeftmostVisiblePageForIndex(i)]; in getPageScrolls()
853 if (outPageScrolls[i] != adjustedScroll) { in getPageScrolls()
854 outPageScrolls[i] = adjustedScroll; in getPageScrolls()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
DRecentsView.java5640 protected boolean getPageScrolls(int[] outPageScrolls, boolean layoutChildren, in getPageScrolls() argument
5642 int[] newPageScrolls = new int[outPageScrolls.length]; in getPageScrolls()
5660 if (clearAllIndex != -1 && clearAllIndex < outPageScrolls.length) { in getPageScrolls()
5663 if (outPageScrolls[clearAllIndex] != clearAllScroll) { in getPageScrolls()
5665 outPageScrolls[clearAllIndex] = clearAllScroll; in getPageScrolls()
5679 if (outPageScrolls[i] != pageScroll) { in getPageScrolls()
5681 outPageScrolls[i] = pageScroll; in getPageScrolls()
5684 Log.d(TAG, "getPageScrolls - outPageScrolls[" + i + "]: " + outPageScrolls[i]); in getPageScrolls()