Searched defs:startRow (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/text/
H A DPackedIntVector.java141 * @param startRow the row at which to begin incrementing.
146 * (startRow < 0 || startRow > size()) or the column
149 public void adjustValuesBelow(int startRow, int column, int delta) { argument
150 if (((startRow | column) < 0) || (startRow > size()) ||
152 throw new IndexOutOfBoundsException(startRow + ", " + column);
155 if (startRow >= mRowGapStart) {
156 startRow += mRowGapLength;
159 moveValueGapTo(column, startRow);
[all...]

Completed in 133 milliseconds