Searched defs:startRow (Results 1 - 5 of 5) 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
78 public int damage(int startRow, int endRow, int startCol, int endCol) {
80 mClient.onDamage(startRow, endRow, startCol, endCol);
/packages/services/BuiltInPrintService/src/com/android/bips/render/
H A DPdfRenderService.java205 for (int startRow = mYOffset; startRow < mYOffset + mHeight; startRow +=
207 int stripeRows = Math.min(mRowsPerStripe, (mYOffset + mHeight) - startRow);
208 renderToBitmap(startRow, bitmap);
220 private void renderToBitmap(int startRow, Bitmap bitmap) { argument
225 matrix.postTranslate(0, 0 - startRow);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DKeyboardBuilder.java308 startRow(row);
423 startRow(row);
834 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 110 milliseconds