Home | History | Annotate | Download | only in expected

Lines Matching defs:columnIndex

120         final int columnIndex = column - 1;
121 if (columnIndex < 0) {
125 if (columnIndex >= elements.length + 1) {
130 System.arraycopy(newElements, columnIndex, newElements, columnIndex + 1,
131 elements.length - columnIndex);
133 newElements[columnIndex] = element;
138 final E[] newElements = (columnIndex < elements.length) ? elements
139 : Arrays.copyOf(elements, columnIndex + 1);
140 newElements[columnIndex] = element;