Searched defs:endRow (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.java375 endRow(row);
460 endRow(row);
822 private void endRow(final KeyboardRow row) { method in class:KeyboardBuilder
/packages/apps/Gallery/src/com/android/camera/
H A DGridViewSpecial.java292 int endRow = (mScrollY + getHeight() - mSpec.mCellSpacing - 1)
295 // Limit startRow and endRow to the valid range.
298 endRow = Math.max(Math.min(endRow, mRows), 0);
299 mImageBlockManager.setVisibleRows(startRow, endRow);
661 int endRow = (mScrollY + getHeight() - mSpec.mCellSpacing - 1)
664 // Limit startRow and endRow to the valid range.
667 endRow = Math.max(Math.min(endRow, mRows), 0);
670 int endIndex = Math.min(endRow * mColumn
768 setVisibleRows(int startRow, int endRow) argument
[all...]

Completed in 100 milliseconds