Lines Matching refs:mCapture
188 private Bitmap mCapture; field in Tab
1230 if (mCapture == null) { in updateShouldCaptureThumbnails()
1231 mCapture = Bitmap.createBitmap(mCaptureWidth, mCaptureHeight, in updateShouldCaptureThumbnails()
1233 mCapture.eraseColor(Color.WHITE); in updateShouldCaptureThumbnails()
1241 mCapture = null; in updateShouldCaptureThumbnails()
1769 if (mCapture != null) { in restoreState()
1802 return mCapture; in getScreenshot()
1910 if (mMainView == null || mCapture == null) return; in capture()
1914 Canvas c = new Canvas(mCapture); in capture()
1928 c.drawRect(0, 0, 1, mCapture.getHeight(), sAlphaPaint); in capture()
1929 c.drawRect(mCapture.getWidth() - 1, 0, mCapture.getWidth(), in capture()
1930 mCapture.getHeight(), sAlphaPaint); in capture()
1931 c.drawRect(0, 0, mCapture.getWidth(), 1, sAlphaPaint); in capture()
1932 c.drawRect(0, mCapture.getHeight() - 1, mCapture.getWidth(), in capture()
1933 mCapture.getHeight(), sAlphaPaint); in capture()
1999 if (mCapture == null) { in updateCaptureFromBlob()
2004 mCapture.copyPixelsFromBuffer(buffer); in updateCaptureFromBlob()
2008 + "capture: " + mCapture.getByteCount()); in updateCaptureFromBlob()