Lines Matching full:cellvspan
585 if (lp.cellVSpan < 0) lp.cellVSpan = mCountY;
687 cellInfo.spanY = lp.cellVSpan;
1929 c = new CellAndSpan(lp.tmpCellX, lp.tmpCellY, lp.cellHSpan, lp.cellVSpan);
1931 c = new CellAndSpan(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan);
1954 lp.cellVSpan = c.spanY;
2147 info.spanY = lp.cellVSpan;
2244 r1.set(lp.cellX, lp.cellY, lp.cellX + lp.cellHSpan, lp.cellY + lp.cellVSpan);
2650 * @param cellVSpan Height in cells
2653 public void cellToRect(int cellX, int cellY, int cellHSpan, int cellVSpan, Rect resultRect) {
2663 int height = cellVSpan * cellHeight + ((cellVSpan - 1) * heightGap);
2789 markCellsForView(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, occupied, true);
2798 markCellsForView(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, occupied, false);
2893 public int cellVSpan;
2897 * or whether these will be computed based on cellX, cellY, cellHSpan and cellVSpan.
2919 cellVSpan = 1;
2925 cellVSpan = 1;
2933 this.cellVSpan = source.cellVSpan;
2936 public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) {
2941 this.cellVSpan = cellVSpan;
2947 final int myCellVSpan = cellVSpan;