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

/frameworks/base/core/java/android/text/
H A DPackedIntVector.java140 * @param startRow the row at which to begin incrementing.
145 * (startRow < 0 || startRow > size()) or the column
148 public void adjustValuesBelow(int startRow, int column, int delta) { argument
149 if (((startRow | column) < 0) || (startRow > size()) ||
151 throw new IndexOutOfBoundsException(startRow + ", " + column);
154 if (startRow >= mRowGapStart) {
155 startRow += mRowGapLength;
158 moveValueGapTo(column, startRow);
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternView.java935 final int startRow = start.row;
952 (double) (endRow - startRow), (double) (endColumn - startColumn));

Completed in 78 milliseconds