Home | History | Annotate | Download | only in camera

Lines Matching refs:mRows

137     private int mRows;  // Cache (mCount + mColumns - 1) / mColumns
222 mRows = (mCount + mColumns - 1) / mColumns;
224 mMaxScrollY = mSpec.mCellSpacing + (mRows * mBlockHeight)
296 // Make sure we handle the mRows == 0 case right.
297 startRow = Math.max(Math.min(startRow, mRows - 1), 0);
298 endRow = Math.max(Math.min(endRow, mRows), 0);
665 // Make sure we handle the mRows == 0 case right.
666 startRow = Math.max(Math.min(startRow, mRows - 1), 0);
667 endRow = Math.max(Math.min(endRow, mRows), 0);
737 private final int mRows; // Cache (mCount + mColumns - 1) / mColumns
760 mRows = (mCount + mColumns - 1) / mColumns;
819 if (after >= mRows && before < 0) {
822 if (after < mRows && scanOne(after)) return;
835 Assert(row >= 0 && row < mRows);