Home | History | Annotate | Download | only in expected

Lines Matching defs:rowIndex

56         for (int rowIndex = 0; rowIndex < rows.length; rowIndex++) {
57 final E[] row = rows[rowIndex];
58 mRows[rowIndex] = Arrays.copyOf(row, row.length);
85 final int rowIndex = row - 1;
86 if (rowIndex < 0 || rowIndex >= mRows.length) {
89 return mRows[rowIndex];
99 final int rowIndex = row - 1;
100 if (rowIndex < 0) {
103 final E[][] newRows = (rowIndex < mRows.length) ? mRows
104 : Arrays.copyOf(mRows, rowIndex + 1);
105 newRows[rowIndex] = elements;