Searched defs:mNextPage (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DPagedView.java92 protected int mNextPage = INVALID_PAGE; field in class:PagedView
286 return (mNextPage != INVALID_PAGE) ? mNextPage : mCurrentPage;
454 } else if (mNextPage != INVALID_PAGE) {
455 mCurrentPage = Math.max(0, Math.min(mNextPage, getPageCount() - 1));
456 mNextPage = INVALID_PAGE;
873 if (mNextPage != INVALID_PAGE) {
874 focusablePage = mNextPage;
1572 mNextPage = whichPage;
1592 loadAssociatedPages(mNextPage);
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DPagedView.java102 protected int mNextPage = INVALID_PAGE; field in class:PagedView
333 return (mNextPage != INVALID_PAGE) ? mNextPage : mCurrentPage;
369 mNextPage = INVALID_PAGE;
378 mNextPage = INVALID_PAGE;
577 } else if (mNextPage != INVALID_PAGE && shouldInvalidate) {
580 mCurrentPage = validateNewPage(mNextPage);
581 mNextPage = INVALID_PAGE;
1029 if (mNextPage != INVALID_PAGE) {
1030 focusablePage = mNextPage;
[all...]

Completed in 205 milliseconds