Home | History | Annotate | Download | only in launcher3

Lines Matching refs:cellVSpan

636             if (lp.cellVSpan < 0) lp.cellVSpan = mCountY;
741 cellInfo.spanY = lp.cellVSpan;
2193 c = new CellAndSpan(lp.tmpCellX, lp.tmpCellY, lp.cellHSpan, lp.cellVSpan);
2195 c = new CellAndSpan(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan);
2218 lp.cellVSpan = c.spanY;
2422 info.spanX != lp.cellHSpan || info.spanY != lp.cellVSpan) {
2428 info.spanY = lp.cellVSpan;
2525 r1.set(lp.cellX, lp.cellY, lp.cellX + lp.cellHSpan, lp.cellY + lp.cellVSpan);
2988 * @param cellVSpan Height in cells
2991 public void cellToRect(int cellX, int cellY, int cellHSpan, int cellVSpan, Rect resultRect) {
3001 int height = cellVSpan * cellHeight + ((cellVSpan - 1) * heightGap);
3130 markCellsForView(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, occupied, true);
3139 markCellsForView(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan, occupied, false);
3234 public int cellVSpan;
3238 * or whether these will be computed based on cellX, cellY, cellHSpan and cellVSpan.
3265 cellVSpan = 1;
3271 cellVSpan = 1;
3279 this.cellVSpan = source.cellVSpan;
3282 public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) {
3287 this.cellVSpan = cellVSpan;
3294 final int myCellVSpan = cellVSpan;