| /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ | 
| TextureViewActivity.java | 20 import android.graphics.Bitmap; 57                 Bitmap b = mTextureView.getBitmap(800, 800);
 62                     b.compress(Bitmap.CompressFormat.PNG, 100, out);
 
 | 
| ClearActivity.java | 21 import android.graphics.Bitmap; 41         private final Bitmap mBitmap1;
 
 | 
| FramebufferBlendActivity.java | 22 import android.graphics.Bitmap; 48         private Bitmap mTexture;
 
 | 
| /packages/apps/Browser/src/com/android/browser/ | 
| BrowserBookmarksAdapter.java | 21 import android.graphics.Bitmap; 73             Bitmap thumbBitmap = null;
 99             Bitmap faviconBitmap = null;
 
 | 
| /packages/apps/Browser/tests/src/com/android/browser/ | 
| TestWebChromeClient.java | 19 import android.graphics.Bitmap; 60     public void onReceivedIcon(WebView view, Bitmap icon) {
 182     public Bitmap getDefaultVideoPoster() {
 
 | 
| /packages/apps/Camera/src/com/android/camera/ui/ | 
| RotateImageView.java | 20 import android.graphics.Bitmap; 138     private Bitmap mThumb;
 142     public void setBitmap(Bitmap bitmap) {
 145         if (bitmap == null) {
 159                 bitmap, miniThumbWidth, miniThumbHeight);
 
 | 
| /packages/apps/Gallery2/src/com/android/gallery3d/gadget/ | 
| WidgetConfigure.java | 28 import android.graphics.Bitmap; 107         Bitmap bitmap = (Bitmap) data.getParcelableExtra("data");  local
 110             helper.setPhoto(mAppWidgetId, mPickedItem, bitmap);
 
 | 
| WidgetService.java | 28 import android.graphics.Bitmap; 60         public Bitmap getImage(int index) {
 145             Bitmap bitmap = mSource.getImage(position);  local
 146             if (bitmap == null) return getLoadingView();
 150             views.setImageViewBitmap(R.id.appwidget_photo_item, bitmap);
 
 | 
| /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/ | 
| PhotoEditor.java | 21 import android.graphics.Bitmap; 83             public void onComplete(final Bitmap result) {
 138                             public void onDone(Bitmap bitmap) {
 149                                         bitmap);
 
 | 
| /packages/apps/Mms/src/com/android/mms/ui/ | 
| BasicSlideEditorView.java | 23 import android.graphics.Bitmap; 100     public void setImage(String name, Bitmap bitmap) {
 102             if (null == bitmap) {
 103                 bitmap = BitmapFactory.decodeResource(getResources(),
 106             mImageView.setImageBitmap(bitmap);
 135             Bitmap bitmap = VideoAttachmentView.createVideoThumbnail(mContext, video);  local
 136             if (null == bitmap) {
 137                 bitmap = BitmapFactory.decodeResource(getResources()
 [all...]
 | 
| /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/ | 
| MediaItemView.java | 25 import android.graphics.Bitmap; 260             Bitmap bitmap = getOneThumbnail();  local
 261             if (bitmap != null) {
 263                 canvas.drawBitmap(bitmap, view.getPaddingLeft(),
 286     private Bitmap getOneThumbnail() {
 293             Bitmap bitmap = sThumbnailCache.get(key);  local
 294             if (bitmap != null) {
 295                 return bitmap;
 477  Bitmap bitmap = sThumbnailCache.get(key);  local
 [all...]
 | 
| ImageViewTouchBase.java | 21 import android.graphics.Bitmap; 62     // The current bitmap being displayed.
 63     private Bitmap mBitmapDisplayed;
 150     public void setImageBitmap(Bitmap bitmap) {
 151         super.setImageBitmap(bitmap);
 158         mBitmapDisplayed = bitmap;
 169      * @return The image bitmap
 171     public Bitmap getImageBitmap() {
 178      * @param bitmap The bitma
 [all...]
 | 
| /cts/tests/tests/graphics/src/android/graphics/drawable/cts/ | 
| TransitionDrawableTest.java | 22 import android.graphics.Bitmap; 23 import android.graphics.Bitmap.Config;
 46     private Bitmap mBitmap;
 57         mBitmap = Bitmap.createBitmap(CANVAS_WIDTH, CANVAS_HEIGHT, Config.ARGB_8888);
 266     private void assertColorFillRect(Bitmap bmp, int x, int y, int w, int h, int color) {
 274     private void assertColorNotFillRect(Bitmap bmp, int x, int y, int w, int h, int color) {
 
 | 
| /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/ | 
| LabelMaker.java | 19 import android.graphics.Bitmap; 37  * OpenGL labels are implemented by creating a Bitmap, drawing all the labels
 38  * into the Bitmap, converting the Bitmap into an Alpha texture, and drawing
 127         Bitmap.Config config = mFullColor ?
 128                 Bitmap.Config.ARGB_4444 : Bitmap.Config.ALPHA_8;
 129         mBitmap = Bitmap.createBitmap(mStrikeWidth, mStrikeHeight, config);
 267         // Reclaim storage used by bitmap and canvas.
 393     private Bitmap mBitmap
 [all...]
 | 
| /packages/apps/Gallery/src/com/android/camera/ | 
| ImageViewTouchBase.java | 20 import android.graphics.Bitmap; 57     // The current bitmap being displayed.
 64     // ImageViewTouchBase will pass a Bitmap to the Recycler if it has finished
 65     // its use of that Bitmap.
 67         public void recycle(Bitmap b);
 120     public void setImageBitmap(Bitmap bitmap) {
 121         setImageBitmap(bitmap, 0);
 124     private void setImageBitmap(Bitmap bitmap, int rotation)
 [all...]
 | 
| /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/analyzer/ | 
| CameraAnalyzerActivity.java | 21 import android.graphics.Bitmap; 36     Bitmap mInputImage;
 
 | 
| /cts/tests/tests/graphics2/src/android/graphics2/cts/ | 
| TextureViewCameraActivity.java | 20 import android.graphics.Bitmap; 85             Bitmap bitmap = mTextureView.getBitmap();  local
 86             Assert.assertEquals(mHeight, bitmap.getHeight());
 87             Assert.assertEquals(mWidth, bitmap.getWidth());
 88             bitmap.recycle();
 
 | 
| /cts/tests/tests/webkit/src/android/webkit/cts/ | 
| WebHistoryItemTest.java | 26 import android.graphics.Bitmap; 93         Bitmap icon = view.getFavicon();
 
 | 
| /frameworks/base/graphics/java/android/graphics/ | 
| BitmapRegionDecoder.java | 33  * to get a decoded Bitmap of the specified region. 178      * @return The decoded bitmap, or null if the image data could not be
 181     public Bitmap decodeRegion(Rect rect, BitmapFactory.Options options) {
 248     private static native Bitmap nativeDecodeRegion(int lbm,
 
 | 
| NinePatch.java | 21  * The NinePatch class permits drawing a bitmap in nine sections. 38     private final Bitmap mBitmap;
 45      * Create a drawable projection from a bitmap to nine patches.
 47      * @param bitmap    The bitmap describing the patches.
 49      *                  bitmap is split apart and drawn.
 50      * @param srcName   The name of the source for the bitmap. Might be null.
 52     public NinePatch(Bitmap bitmap, byte[] chunk, String srcName) {
 53         mBitmap = bitmap;
 [all...]
 | 
| /frameworks/base/media/java/android/media/ | 
| RemoteControlClient.java | 22 import android.graphics.Bitmap; 307         protected Bitmap mEditorArtwork;
 399          * @param key the identifier of the bitmap to set. The only valid value is
 401          * @param bitmap The bitmap for the artwork, or null if there isn't any.
 405          * @see android.graphics.Bitmap
 407         public synchronized MetadataEditor putBitmap(int key, Bitmap bitmap)
 414                 throw(new IllegalArgumentException("Invalid type 'Bitmap' for key "+ key));
 417                 mEditorArtwork = scaleBitmapIfTooBig(bitmap,
 [all...]
 | 
| /frameworks/base/media/java/android/media/videoeditor/ | 
| MediaItem.java | 31 import android.graphics.Bitmap; 411      *             or if the bitmap is not specified or if the dimensions of the
 412      *             bitmap do not match the dimensions of the media item
 436             final Bitmap bitmap = frame.getBitmap();  local
 437             if (bitmap == null) {
 438                 throw new IllegalArgumentException("Overlay bitmap not specified");
 451              * The dimensions of the overlay bitmap must be the same as the
 454             if (bitmap.getWidth() != scaledWidth || bitmap.getHeight() != scaledHeight)
 [all...]
 | 
| TransitionAlpha.java | 19 import android.graphics.Bitmap; 30  * bitmap mask. The mask shows the shape of the transition all along the
 124             Bitmap imageBitmap = BitmapFactory.decodeFile(maskFilename);
 
 | 
| /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/ | 
| ScreenshotTest.java | 18 import android.graphics.Bitmap; 133         Bitmap b = BitmapFactory.decodeFile(screenshotFile.getAbsolutePath());
 
 | 
| /frameworks/base/telephony/java/com/android/internal/telephony/cat/ | 
| Menu.java | 19 import android.graphics.Bitmap; 35     public Bitmap titleIcon;
 
 |