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.java99 protected int mNextPage = INVALID_PAGE; field in class:PagedView
230 return (mNextPage != INVALID_PAGE) ? mNextPage : mCurrentPage;
270 mNextPage = INVALID_PAGE;
280 mNextPage = INVALID_PAGE;
451 } else if (mNextPage != INVALID_PAGE && shouldInvalidate) {
455 mCurrentPage = validateNewPage(mNextPage);
456 mNextPage = INVALID_PAGE;
722 if (mNextPage != INVALID_PAGE) {
723 focusablePage = mNextPage;
[all...]

Completed in 36 milliseconds