HomeSort by relevance Sort by last modified time
    Searched refs:mNextPage (Results 1 - 10 of 10) 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/
PagedViewWithDraggableItems.java 106 if (mNextPage != INVALID_PAGE) return false;
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...]
AppsCustomizePagedView.java     [all...]
Workspace.java 597 // mNextPage is set to INVALID_PAGE whenever we are stationary.
599 final int current = (mNextPage == INVALID_PAGE) ? mCurrentPage : mNextPage;
608 // mNextPage is set to INVALID_PAGE whenever we are stationary.
610 final int current = (mNextPage == INVALID_PAGE) ? mCurrentPage : mNextPage;
733 if (mNextPage != INVALID_PAGE) {
735 enableChildrenCache(mCurrentPage, mNextPage);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedViewWithDraggableItems.java 106 if (mNextPage != INVALID_PAGE) return false;
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...]
AppsCustomizePagedView.java     [all...]
Workspace.java     [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
PagedView.java 113 protected int mNextPage = INVALID_PAGE;
424 return (mNextPage != INVALID_PAGE) ? mNextPage : mCurrentPage;
615 } else if (mNextPage != INVALID_PAGE) {
616 mCurrentPage = Math.max(0, Math.min(mNextPage, getPageCount() - 1));
617 mNextPage = INVALID_PAGE;
    [all...]

Completed in 367 milliseconds