Lines Matching refs:mRows
137 private int mRows; // Cache (mCount + mColumns - 1) / mColumns field in GridViewSpecial
222 mRows = (mCount + mColumns - 1) / mColumns; in onLayout()
224 mMaxScrollY = mSpec.mCellSpacing + (mRows * mBlockHeight) in onLayout()
297 startRow = Math.max(Math.min(startRow, mRows - 1), 0); in moveDataWindow()
298 endRow = Math.max(Math.min(endRow, mRows), 0); in moveDataWindow()
666 startRow = Math.max(Math.min(startRow, mRows - 1), 0); in paintDecoration()
667 endRow = Math.max(Math.min(endRow, mRows), 0); in paintDecoration()
737 private final int mRows; // Cache (mCount + mColumns - 1) / mColumns field in ImageBlockManager
760 mRows = (mCount + mColumns - 1) / mColumns; in ImageBlockManager()
819 if (after >= mRows && before < 0) { in continueLoading()
822 if (after < mRows && scanOne(after)) return; in continueLoading()
835 Assert(row >= 0 && row < mRows); in tryToLoad()