Home
last modified time | relevance | path

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

/packages/apps/Launcher2/src/com/android/launcher2/
DCellLayout.java292 static int widthInPortrait(Resources r, int numCells) { in widthInPortrait() argument
300 return minGap * (numCells - 1) + cellWidth * numCells; in widthInPortrait()
303 static int heightInLandscape(Resources r, int numCells) { in heightInLandscape() argument
311 return minGap * (numCells - 1) + cellHeight * numCells; in heightInLandscape()
DAppsCustomizePagedView.java1025 int numCells = mCellCountX * mCellCountY; in syncAppsPageItems() local
1026 int startIndex = page * numCells; in syncAppsPageItems()
1027 int endIndex = Math.min(startIndex + numCells, mApps.size()); in syncAppsPageItems()