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

/packages/apps/Terminal/src/com/android/terminal/
H A DTerminalCallbacks.java20 public int damage(int startRow, int endRow, int startCol, int endCol) { argument
H A DTerminal.java58 public void onDamage(int startRow, int endRow, int startCol, int endCol); argument
73 public int damage(int startRow, int endRow, int startCol, int endCol) {
75 mClient.onDamage(startRow, endRow, startCol, endCol);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DKeyboardBuilder.java304 startRow(row);
419 startRow(row);
815 private void startRow(final KeyboardRow row) { method in class:KeyboardBuilder
/packages/apps/Gallery/src/com/android/camera/
H A DGridViewSpecial.java291 int startRow = (mScrollY - mSpec.mCellSpacing) / mBlockHeight;
295 // Limit startRow and endRow to the valid range.
297 startRow = Math.max(Math.min(startRow, mRows - 1), 0);
299 mImageBlockManager.setVisibleRows(startRow, endRow);
618 int startRow =
620 int topPos = startRow * mColumns;
660 int startRow = (mScrollY - mSpec.mCellSpacing) / mBlockHeight;
664 // Limit startRow and endRow to the valid range.
666 startRow
768 setVisibleRows(int startRow, int endRow) argument
[all...]

Completed in 57 milliseconds