Home | History | Annotate | Download | only in launcher2

Lines Matching defs:widthGap

878         int widthGap;
891 widthGap = res.getDimensionPixelSize(R.dimen.workspace_width_gap_land);
901 widthGap = res.getDimensionPixelSize(R.dimen.workspace_width_gap_port);
909 if (widthGap < 0 || heightGap < 0) {
914 widthGap = Math.min(maxGap, numWidthGaps > 0 ? (hFreeSpace / numWidthGaps) : 0);
917 metrics.set(cellWidth, cellHeight, widthGap, heightGap);
2656 final int widthGap = mWidthGap;
2662 int width = cellHSpan * cellWidth + ((cellHSpan - 1) * widthGap);
2665 int x = hStartPadding + cellX * (cellWidth + widthGap);
2944 public void setup(int cellWidth, int cellHeight, int widthGap, int heightGap) {
2951 width = myCellHSpan * cellWidth + ((myCellHSpan - 1) * widthGap) -
2955 x = (int) (myCellX * (cellWidth + widthGap) + leftMargin);