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

  /system/core/libutils/
LinearAllocator.cpp 88 Page* next() { return mNextPage; }
89 void setNext(Page* next) { mNextPage = next; }
92 : mNextPage(0)
107 Page* mNextPage;
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedView.java 92 protected int mNextPage = INVALID_PAGE;
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;
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
PagedView.java 113 protected int mNextPage = INVALID_PAGE;
422 return (mNextPage != INVALID_PAGE) ? mNextPage : mCurrentPage;
597 } else if (mNextPage != INVALID_PAGE) {
598 mCurrentPage = Math.max(0, Math.min(mNextPage, getPageCount() - 1));
599 mNextPage = INVALID_PAGE;
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedView.java 123 protected int mNextPage = INVALID_PAGE;
490 return (mNextPage != INVALID_PAGE) ? mNextPage : mCurrentPage;
544 mNextPage = INVALID_PAGE;
704 } else if (mNextPage != INVALID_PAGE) {
707 mCurrentPage = Math.max(0, Math.min(mNextPage, getPageCount() - 1));
708 mNextPage = INVALID_PAGE;
    [all...]

Completed in 122 milliseconds