Home | History | Annotate | Download | only in launcher2

Lines Matching defs:cellVSpan

640             if (lp.cellVSpan < 0) lp.cellVSpan = mCountY;
742 cellInfo.spanY = lp.cellVSpan;
2202 c = new CellAndSpan(lp.tmpCellX, lp.tmpCellY, lp.cellHSpan, lp.cellVSpan);
2204 c = new CellAndSpan(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan);
2227 lp.cellVSpan = c.spanY;
2415 info.spanX != lp.cellHSpan || info.spanY != lp.cellVSpan) {
2421 info.spanY = lp.cellVSpan;
2518 r1.set(lp.cellX, lp.cellY, lp.cellX + lp.cellHSpan, lp.cellY + lp.cellVSpan);
2961 * @param cellVSpan Height in cells
2964 public void cellToRect(int cellX, int cellY, int cellHSpan, int cellVSpan, Rect resultRect) {
2974 int height = cellVSpan * cellHeight + ((cellVSpan - 1) * heightGap);
3100 markCellsForView(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, occupied, true);
3109 markCellsForView(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, occupied, false);
3204 public int cellVSpan;
3208 * or whether these will be computed based on cellX, cellY, cellHSpan and cellVSpan.
3230 cellVSpan = 1;
3236 cellVSpan = 1;
3244 this.cellVSpan = source.cellVSpan;
3247 public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) {
3252 this.cellVSpan = cellVSpan;
3259 final int myCellVSpan = cellVSpan;