Lines Matching refs:cellHeight
307 int cellHeight = r.getDimensionPixelSize(R.dimen.workspace_cell_height); in heightInLandscape() local
311 return minGap * (numCells - 1) + cellHeight * numCells; in heightInLandscape()
936 int cellHeight; in getMetrics() local
945 cellHeight = res.getDimensionPixelSize(R.dimen.workspace_cell_height_land); in getMetrics()
955 cellHeight = res.getDimensionPixelSize(R.dimen.workspace_cell_height_port); in getMetrics()
968 int vFreeSpace = vSpace - (countY * cellHeight); in getMetrics()
972 metrics.set(cellWidth, cellHeight, widthGap, heightGap); in getMetrics()
2966 final int cellHeight = mCellHeight; in cellToRect() local
2974 int height = cellVSpan * cellHeight + ((cellVSpan - 1) * heightGap); in cellToRect()
2977 int y = vStartPadding + cellY * (cellHeight + heightGap); in cellToRect()
3255 public void setup(int cellWidth, int cellHeight, int widthGap, int heightGap, in setup() argument
3269 height = myCellVSpan * cellHeight + ((myCellVSpan - 1) * heightGap) - in setup()
3272 y = (int) (myCellY * (cellHeight + heightGap) + topMargin); in setup()