Home | History | Annotate | Download | only in launcher2

Lines Matching refs:cellHeight

307         int cellHeight = r.getDimensionPixelSize(R.dimen.workspace_cell_height);
311 return minGap * (numCells - 1) + cellHeight * numCells;
936 int cellHeight;
945 cellHeight = res.getDimensionPixelSize(R.dimen.workspace_cell_height_land);
955 cellHeight = res.getDimensionPixelSize(R.dimen.workspace_cell_height_port);
968 int vFreeSpace = vSpace - (countY * cellHeight);
972 metrics.set(cellWidth, cellHeight, widthGap, heightGap);
1193 // cellWidth/2 and cellHeight/2 when finding the matching cell
2966 final int cellHeight = mCellHeight;
2974 int height = cellVSpan * cellHeight + ((cellVSpan - 1) * heightGap);
2977 int y = vStartPadding + cellY * (cellHeight + heightGap);
3255 public void setup(int cellWidth, int cellHeight, int widthGap, int heightGap,
3269 height = myCellVSpan * cellHeight + ((myCellVSpan - 1) * heightGap) -
3272 y = (int) (myCellY * (cellHeight + heightGap) + topMargin);