Lines Matching defs:row

40  * elements of the row elements are cells.  The cell elements can
84 * Creates a new table row.
87 * @return the row
130 * Fetches the span (height) of the given row.
132 int getRowSpan(int row) {
133 View rv = getRow(row);
140 TableRow getRow(int row) {
141 if (row < rows.size()) {
142 return rows.elementAt(row);
180 // fall through to one row
218 * for multi-column, multi-row, and missing grid
239 for (int row = 0; row < nrows; row++) {
240 TableRow rv = getRow(row);
250 int rowLimit = row + rowSpan;
252 for (int i = row; i < rowLimit; i++) {
254 if (i != row || j != col) {
281 void addFill(int row, int col) {
282 TableRow rv = getRow(row);
335 // all of the row layouts are invalid, so mark them that way
338 TableRow row = getRow(i);
339 row.layoutChanged(axis);
413 TableRow row = getRow(i);
415 int ncells = row.getViewCount();
417 View cv = row.getView(cell);
418 for (; row.isFilled(col); col++); // advance to a free column
433 TableRow row = getRow(i);
435 int ncells = row.getViewCount();
437 View cv = row.getView(cell);
438 for (; row.isFilled(col); col++); // advance to a free column
585 * View of a row in a row-centric table.
614 return row;
621 void setRow(int row) {
622 this.row = row;
626 * The number of columns present in this row.
723 // test bounds of each row because it may not exist
726 int row = getRow() + j;
727 if (row < TableView.this.getViewCount()) {
788 /** columns filled by multi-column or multi-row cells */
790 /** the row within the overall grid */
791 int row;
836 * @param row the row >= 0
839 public void setGridLocation(int row, int col) {
840 this.row = row;
845 * Gets the row of the grid location
848 return row;
858 int row;
874 * @param row the row >= 0
877 public void setGridLocation(int row, int col);
880 * Gets the row of the grid location