Home | History | Annotate | Download | only in camera

Lines Matching refs:mBlockHeight

138     private int mBlockHeight; // Cache mSpec.mCellSpacing + mSpec.mCellHeight
223 mBlockHeight = mSpec.mCellSpacing + mSpec.mCellHeight;
224 mMaxScrollY = mSpec.mCellSpacing + (mRows * mBlockHeight)
291 int startRow = (mScrollY - mSpec.mCellSpacing) / mBlockHeight;
293 / mBlockHeight + 1;
508 int top = row * mBlockHeight;
619 (mScrollY - mSpec.mCellSpacing) / mBlockHeight;
660 int startRow = (mScrollY - mSpec.mCellSpacing) / mBlockHeight;
662 / mBlockHeight + 1;
673 int yPos = mSpec.mCellSpacing + startRow * mBlockHeight;
685 yPos += mBlockHeight;
702 int yTop = spacing + (row * mBlockHeight);
738 private final int mBlockHeight; // The height of an ImageBlock.
758 mBlockHeight = mSpec.mCellSpacing + mSpec.mCellHeight;
902 final int height = mBlockHeight;
935 canvas.drawRect(xPos, yPos, xPos + mBlockWidth, yPos + mBlockHeight,
983 mBitmap = Bitmap.createBitmap(mBlockWidth, mBlockHeight,
1119 yPos + mBlockHeight, mBackgroundPaint);
1123 Rect srcRect = new Rect(0, 0, w, mBlockHeight);