Home | History | Annotate | Download | only in camera

Lines Matching defs:startRow

291         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 = Math.max(Math.min(startRow, mRows - 1), 0);
669 int startIndex = startRow * mColumns;
673 int yPos = mSpec.mCellSpacing + startRow * mBlockHeight;
768 public void setVisibleRows(int startRow, int endRow) {
769 if (startRow != mStartRow || endRow != mEndRow) {
770 mStartRow = startRow;