Home | History | Annotate | Download | only in camera

Lines Matching defs:endRow

292         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 * mColumns, mCount);
768 public void setVisibleRows(int startRow, int endRow) {
769 if (startRow != mStartRow || endRow != mEndRow) {
771 mEndRow = endRow;