OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mContentBitmap
(Results
1 - 4
of
4
) sorted by null
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
BitmapTexture.java
29
protected Bitmap
mContentBitmap
;
38
mContentBitmap
= bitmap;
48
return
mContentBitmap
;
52
return
mContentBitmap
;
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
BitmapTexture.java
29
protected Bitmap
mContentBitmap
;
38
mContentBitmap
= bitmap;
48
return
mContentBitmap
;
52
return
mContentBitmap
;
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
BitmapTexture.java
29
protected Bitmap
mContentBitmap
;
38
mContentBitmap
= bitmap;
48
return
mContentBitmap
;
52
return
mContentBitmap
;
/packages/apps/Browser/src/com/android/browser/
PhoneUi.java
466
private Bitmap
mContentBitmap
;
501
if (
mContentBitmap
== null
502
||
mContentBitmap
.getWidth() != web.getWidth()
503
||
mContentBitmap
.getHeight() != h) {
504
mContentBitmap
= safeCreateBitmap(web.getWidth(), h);
506
if (
mContentBitmap
!= null) {
507
Canvas c = new Canvas(
mContentBitmap
);
514
mContent.setImageBitmap(
mContentBitmap
);
Completed in 43 milliseconds