Searched refs:numCells (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DCellLayout.java263 static int widthInPortrait(Resources r, int numCells) { argument
271 return minGap * (numCells - 1) + cellWidth * numCells;
274 static int heightInLandscape(Resources r, int numCells) { argument
282 return minGap * (numCells - 1) + cellHeight * numCells;
H A DAppsCustomizePagedView.java750 int numCells = mCellCountX * mCellCountY;
751 int startIndex = page * numCells;
752 int endIndex = Math.min(startIndex + numCells, mApps.size());

Completed in 40 milliseconds