Searched defs:startRow (Results 1 - 2 of 2) 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...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DStaggeredGrid.java154 * @param startRow the index of the row
156 public final void setStart(int startIndex, int startRow) { argument
158 mStartRow = startRow;

Completed in 296 milliseconds