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

  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizePagedView.java 300 int numItemsPerPage = mCellCountX * mCellCountY;
303 i = (currentPage * numItemsPerPage) + (childCount / 2);
308 int numItemsPerPage = mWidgetCountX * mWidgetCountY;
312 ((currentPage - mNumAppsPages) * numItemsPerPage) + (childCount / 2);
333 int numItemsPerPage = mCellCountX * mCellCountY;
334 return (index / numItemsPerPage);
336 int numItemsPerPage = mWidgetCountX * mWidgetCountY;
337 return mNumAppsPages + ((index - mApps.size()) / numItemsPerPage);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
AppsCustomizePagedView.java 318 int numItemsPerPage = mCellCountX * mCellCountY;
321 i = (currentPage * numItemsPerPage) + (childCount / 2);
326 int numItemsPerPage = mWidgetCountX * mWidgetCountY;
330 (currentPage * numItemsPerPage) + (childCount / 2);
353 int numItemsPerPage = mCellCountX * mCellCountY;
354 return (index / numItemsPerPage);
356 int numItemsPerPage = mWidgetCountX * mWidgetCountY;
357 return (index - mApps.size()) / numItemsPerPage;
    [all...]

Completed in 37 milliseconds