Lines Matching refs:numItemsPerPage
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);
1172 int numItemsPerPage = mWidgetCountX * mWidgetCountY;
1184 int offset = (page - mNumAppsPages) * numItemsPerPage;
1185 for (int i = offset; i < Math.min(offset + numItemsPerPage, mWidgets.size()); ++i) {