HomeSort by relevance Sort by last modified time
    Searched defs:mNextPage (Results 1 - 2 of 2) sorted by null

  /packages/apps/Launcher2/src/com/android/launcher2/
PagedView.java 92 protected int mNextPage = INVALID_PAGE;
279 return (mNextPage != INVALID_PAGE) ? mNextPage : mCurrentPage;
432 } else if (mNextPage != INVALID_PAGE) {
433 mCurrentPage = Math.max(0, Math.min(mNextPage, getPageCount() - 1));
434 mNextPage = INVALID_PAGE;
839 if (mNextPage != INVALID_PAGE) {
840 focusablePage = mNextPage;
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
PagedView.java 109 protected int mNextPage = INVALID_PAGE;
406 return (mNextPage != INVALID_PAGE) ? mNextPage : mCurrentPage;
560 } else if (mNextPage != INVALID_PAGE) {
561 mCurrentPage = Math.max(0, Math.min(mNextPage, getPageCount() - 1));
562 mNextPage = INVALID_PAGE;
    [all...]

Completed in 647 milliseconds