Lines Matching defs:row

58      * Creates a new table row.
61 * @return the row
118 * Fetches the span (height) of the given row.
120 public int getRowSpan(int row) {
121 RowView rv = getRow(row);
128 RowView getRow(int row) {
129 if (row < rows.size()) {
130 return rows.elementAt(row);
188 // fall through to one row
260 * for multi-column, multi-row, and missing grid
294 for (int row = 0; row < nrows; row++) {
295 RowView rv = getRow(row);
316 int rowLimit = row + rowSpan;
318 for (int i = row; i < rowLimit; i++) {
320 if (i != row || j != col) {
348 void addFill(int row, int col) {
349 RowView rv = getRow(row);
412 RowView row = getRow(i);
414 int ncells = row.getViewCount();
416 View cv = row.getView(cell);
420 for (; row.isFilled(col); col++); // advance to a free column
436 RowView row = getRow(i);
438 int ncells = row.getViewCount();
440 View cv = row.getView(cell);
444 for (; row.isFilled(col); col++); // advance to a free column
611 * multi-row table cells.
649 // all of the row layouts are invalid, so mark them that way
652 RowView row = getRow(i);
653 row.layoutChanged(axis);
763 * that don't directly intersect the clip and the row may
764 * have cells hanging from a row above in it. The table
829 * table row or cell, the request is delegated to the factory
844 * table row or cell, the request is delegated to the factory
862 * table row or cell, the request is delegated to the factory
880 * table row or cell, the request is delegated to the factory
1026 RowView row = getRow(rowIndex);
1028 int ncells = row.getViewCount();
1030 View cv = row.getView(cell);
1031 for (; row.isFilled(col); col++); // advance to a free column
1149 // adjust requirements of multi-row cells
1172 * Fixup preferences to accomodate a multi-row table cell
1214 RowView rv = getRow(row);
1221 RowView rv = getRow(row);
1229 RowView rv = getRow(row);
1236 RowView rv = getRow(row);
1248 row = i;
1256 RowView rv = getRow(row);
1258 int adjust = (adjustments != null) ? adjustments[row] : 0;
1285 * Current row index
1287 private int row;
1290 * Adjustments to the row requirements to handle multi-row
1300 * View of a row in a row-centric table.
1328 * The number of columns present in this row.
1370 * determine if a row with a multi-row cell hangs across
1371 * this row. If a multi-row cell covers this row it also
1373 * recalculate the multi-row cell.
1392 // The major axis requirements for a row are dictated by the column
1479 * Calculate the height requirements of the table row. The
1480 * requirements of multi-row cells are not considered for this
1481 * calculation. The table itself will check and adjust the row
1482 * requirements for all the rows that have multi-row cells spanning
1483 * them. This method updates the multi-row flag that indicates that
1484 * this row and rows below need additional consideration.
1669 /** columns filled by multi-column or multi-row cells */
1673 * The row index within the overall grid
1678 * The view index (for row index to view index conversion).
1684 * Does this table row have cells that span multiple rows?
1771 * is willing to expend to occupy the full height of the row).