HomeSort by relevance Sort by last modified time
    Searched refs:Bitmap (Results 1 - 25 of 1115) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/graphics/java/android/graphics/
Bitmap.aidl 19 parcelable Bitmap;
  /frameworks/base/core/java/android/app/
IThumbnailRetriever.aidl 17 import android.graphics.Bitmap;
24 Bitmap getThumbnail(int index);
IThumbnailReceiver.aidl 19 import android.graphics.Bitmap;
27 void newThumbnail(int id, in Bitmap thumbnail, CharSequence description);
  /packages/apps/Camera2/src/com/android/camera/tinyplanet/
TinyPlanetNative.java 19 import android.graphics.Bitmap;
40 public static native void process(Bitmap in, int width, int height, Bitmap out, int outputSize,
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
BitmapWithMetadata.java 19 import android.graphics.Bitmap;
22 public Bitmap bitmap; field in class:BitmapWithMetadata
25 public BitmapWithMetadata(Bitmap bitmap, int rotationDegrees) {
26 this.bitmap = bitmap;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
BitmapCaller.java 19 import android.graphics.Bitmap;
22 public void available(Bitmap bmap);
ParameterIconStyle.java 19 import android.graphics.Bitmap;
22 Bitmap[] mBitmaps;
24 public ParameterIconStyle(int id, Bitmap[] styles) {
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
BitmapTexture.java 19 import android.graphics.Bitmap;
23 // BitmapTexture is a texture whose content is specified by a fixed Bitmap.
25 // The texture does not own the Bitmap. The user should make sure the Bitmap
27 // does not free the Bitmap.
29 protected Bitmap mContentBitmap;
31 public BitmapTexture(Bitmap bitmap) {
32 this(bitmap, false);
35 public BitmapTexture(Bitmap bitmap, boolean hasBorder)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
BitmapTexture.java 19 import android.graphics.Bitmap;
23 // BitmapTexture is a texture whose content is specified by a fixed Bitmap.
25 // The texture does not own the Bitmap. The user should make sure the Bitmap
27 // does not free the Bitmap.
29 protected Bitmap mContentBitmap;
31 public BitmapTexture(Bitmap bitmap) {
32 this(bitmap, false);
35 public BitmapTexture(Bitmap bitmap, boolean hasBorder)
    [all...]
CanvasTexture.java 19 import android.graphics.Bitmap;
20 import android.graphics.Bitmap.Config;
24 // The subclasses should override onDraw() to draw on the bitmap.
37 protected Bitmap onGetBitmap() {
38 Bitmap bitmap = Bitmap.createBitmap(mWidth, mHeight, mConfig); local
39 mCanvas = new Canvas(bitmap);
40 onDraw(mCanvas, bitmap);
41 return bitmap;
    [all...]
  /packages/apps/Launcher3/src/com/android/gallery3d/glrenderer/
BitmapTexture.java 19 import android.graphics.Bitmap;
23 // BitmapTexture is a texture whose content is specified by a fixed Bitmap.
25 // The texture does not own the Bitmap. The user should make sure the Bitmap
27 // does not free the Bitmap.
29 protected Bitmap mContentBitmap;
31 public BitmapTexture(Bitmap bitmap) {
32 this(bitmap, false);
35 public BitmapTexture(Bitmap bitmap, boolean hasBorder)
    [all...]
  /frameworks/base/services/java/com/android/server/am/
ThumbnailHolder.java 19 import android.graphics.Bitmap;
22 Bitmap lastThumbnail; // Last thumbnail captured for this item.
  /frameworks/opt/photoviewer/src/com/android/ex/photo/loaders/
PhotoBitmapLoaderInterface.java 3 import android.graphics.Bitmap;
15 public Bitmap bitmap; field in class:PhotoBitmapLoaderInterface.BitmapResult
  /packages/apps/Camera/src/com/android/camera/
StaticBitmapScreenNail.java 19 import android.graphics.Bitmap;
24 public StaticBitmapScreenNail(Bitmap bitmap) {
25 super(bitmap);
30 // Always keep the bitmap in memory.
  /frameworks/base/graphics/tests/graphicstests/src/android/graphics/
ThreadBitmapTest.java 20 import android.graphics.Bitmap;
38 public Bitmap b;
41 b = Bitmap.createBitmap(300, 300, Bitmap.Config.RGB_565);
GraphicsPerformanceTests.java 22 import android.graphics.Bitmap;
46 // odd-sized bitmap drawing tests
55 // even-sized bitmap drawing tests
71 /** Target "screen" (bitmap) width and height */
79 /** Bitmap we allocate and draw to */
80 protected Bitmap mDestBitmap;
91 // Create drawable bitmap for rendering into
92 mDestBitmap = Bitmap.createBitmap(SCREEN_WIDTH, SCREEN_HEIGHT,
93 Bitmap.Config.RGB_565);
124 /** Used to access package bitmap images *
    [all...]
BitmapTest.java 27 Bitmap bm1 = Bitmap.createBitmap(100, 200, Bitmap.Config.ARGB_8888);
28 Bitmap bm2 = Bitmap.createBitmap(100, 200, Bitmap.Config.RGB_565);
29 Bitmap bm3 = Bitmap.createBitmap(100, 200, Bitmap.Config.ARGB_4444);
55 assertTrue("getConfig", bm1.getConfig() == Bitmap.Config.ARGB_8888)
    [all...]
  /development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
PictureData.java 19 import android.graphics.Bitmap;
24 Bitmap thumbnail;
26 public PictureData(int resourceId, String description, Bitmap thumbnail) {
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
PageInfo.java 7 import android.graphics.Bitmap;
34 Bitmap getBitmap();
39 Bitmap getBitmap(int width, int height);
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
ThumbnailCache.java 19 import android.graphics.Bitmap;
23 public class ThumbnailCache extends LruCache<Uri, Bitmap> {
29 protected int sizeOf(Uri key, Bitmap value) {
  /cts/tests/tests/graphics/src/android/graphics/cts/
Bitmap_ConfigTest.java 19 import android.graphics.Bitmap;
20 import android.graphics.Bitmap.Config;
41 assertNotNull(Bitmap.createBitmap(10, 24, Config.ALPHA_8));
42 assertNotNull(Bitmap.createBitmap(10, 24, Config.ARGB_4444));
43 assertNotNull(Bitmap.createBitmap(10, 24, Config.ARGB_8888));
44 assertNotNull(Bitmap.createBitmap(10, 24, Config.RGB_565));
BitmapTest.java 22 import android.graphics.Bitmap;
28 import android.graphics.Bitmap.CompressFormat;
29 import android.graphics.Bitmap.Config;
43 private Bitmap mBitmap;
64 //abnormal case: the bitmap has been recycled
101 //abnormal case: the bitmap has been recycled
109 mBitmap = Bitmap.createBitmap(100, 100, Config.ARGB_8888);
110 Bitmap bitmap = mBitmap.copy(Config.ARGB_8888, false); local
111 WidgetTestUtils.assertEquals(mBitmap, bitmap);
164 Bitmap bitmap = Bitmap.createBitmap(mBitmap.getWidth(), mBitmap.getHeight(), local
183 Bitmap bitmap = Bitmap.createBitmap(colors, 10, 10, Config.RGB_565); local
706 Bitmap bitmap = Bitmap.createBitmap(1, 1, config); local
724 Bitmap bitmap = Bitmap.createBitmap(1, 1, Bitmap.Config.ARGB_8888); local
744 Bitmap bitmap = Bitmap.createBitmap(1, 1, Bitmap.Config.ARGB_8888); local
770 Bitmap bitmap = Bitmap.createBitmap(1, 1, Bitmap.Config.ARGB_8888); local
782 Bitmap bitmap = Bitmap.createBitmap(1, 1, Bitmap.Config.ARGB_8888); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
BitmapTileProvider.java 19 import android.graphics.Bitmap;
20 import android.graphics.Bitmap.Config;
30 private final Bitmap[] mMipmaps;
37 public BitmapTileProvider(Bitmap bitmap, int maxBackupSize) {
38 mImageWidth = bitmap.getWidth();
39 mImageHeight = bitmap.getHeight();
40 ArrayList<Bitmap> list = new ArrayList<Bitmap>();
41 list.add(bitmap);
    [all...]
  /art/test/079-phantom/src/
Main.java 18 Bitmap mBitmap1, mBitmap2, mBitmap3, mBitmap4;
66 Bitmap.shutDown();
79 Bitmap.NativeWrapper dataA = Bitmap.allocNativeStorage(10, 10);
80 Bitmap.NativeWrapper dataB = Bitmap.allocNativeStorage(20, 20);
81 mBitmap1 = new Bitmap("one", 10, 10, dataA);
82 mBitmap2 = new Bitmap("two", 20, 20, dataB);
83 mBitmap3 = mBitmap4 = new Bitmap("three/four", 20, 20, dataB);
  /dalvik/tests/079-phantom/src/
Main.java 18 Bitmap mBitmap1, mBitmap2, mBitmap3, mBitmap4;
66 Bitmap.shutDown();
79 Bitmap.NativeWrapper dataA = Bitmap.allocNativeStorage(10, 10);
80 Bitmap.NativeWrapper dataB = Bitmap.allocNativeStorage(20, 20);
81 mBitmap1 = new Bitmap("one", 10, 10, dataA);
82 mBitmap2 = new Bitmap("two", 20, 20, dataB);
83 mBitmap3 = mBitmap4 = new Bitmap("three/four", 20, 20, dataB);

Completed in 378 milliseconds

1 2 3 4 5 6 7 8 91011>>