| /external/webkit/Source/JavaScriptGlue/ForwardingHeaders/wtf/ |
| Bitmap.h | 1 #include <JavaScriptCore/Bitmap.h>
|
| /frameworks/base/graphics/java/android/graphics/ |
| Bitmap.aidl | 19 parcelable Bitmap;
|
| /external/webkit/Source/WebCore/ForwardingHeaders/wtf/ |
| Bitmap.h | 3 #include <JavaScriptCore/Bitmap.h>
|
| /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);
|
| /frameworks/base/services/java/com/android/server/am/ |
| ThumbnailHolder.java | 19 import android.graphics.Bitmap; 22 Bitmap lastThumbnail; // Last thumbnail captured for this item.
|
| TaskAccessInfo.java | 22 import android.graphics.Bitmap; 26 Bitmap thumbnail;
|
| /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/ |
| OnDoneBitmapCallback.java | 19 import android.graphics.Bitmap; 22 * Callback that will only be called back in UI thread to notify that a bitmap is done. 26 void onDone(Bitmap bitmap);
|
| /packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
| BitmapTexture.java | 21 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; 21 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...] |
| BitmapTileProvider.java | 21 import android.graphics.Bitmap; 23 import android.graphics.Bitmap.Config; 28 private final Bitmap mBackup; 29 private final Bitmap[] mMipmaps; 36 public BitmapTileProvider(Bitmap bitmap, int maxBackupSize) { 37 mImageWidth = bitmap.getWidth(); 38 mImageHeight = bitmap.getHeight(); 39 ArrayList<Bitmap> list = new ArrayList<Bitmap>(); [all...] |
| /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...] |
| BitmapFactoryTest.java | 33 Bitmap bitmap1 = Bitmap.createBitmap( 34 new int[] { Color.BLUE }, 1, 1, Bitmap.Config.RGB_565); 36 bitmap1.compress(Bitmap.CompressFormat.PNG, 100, out); 41 Bitmap bitmap = BitmapFactory.decodeFileDescriptor(fd); local 42 assertNotNull("BitmapFactory returned null", bitmap); 43 assertEquals("Bitmap width", 1, bitmap.getWidth()); 44 assertEquals("Bitmap height", 1, bitmap.getHeight()) [all...] |
| /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);
|
| Bitmap.java | 21 public class Bitmap { 24 Bitmap.NativeWrapper mNativeWrapper; 35 Bitmap(String name, int width, int height, Bitmap.NativeWrapper nativeData) { 45 return "Bitmap " + mName + ": " + mWidth + "x" + mHeight + " (" + 60 System.out.println("Bitmap has shut down"); 67 static Bitmap.NativeWrapper allocNativeStorage(int width, int height) { 70 synchronized (Bitmap.class) { 74 Bitmap.NativeWrapper wrapper = new Bitmap.NativeWrapper(nativeData) [all...] |
| /external/webkit/Source/WebCore/platform/graphics/haiku/ |
| ImageBufferDataHaiku.h | 28 #include <Bitmap.h>
|
| /development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
| CreateBitmap.java | 53 private Bitmap[] mBitmaps; 54 private Bitmap[] mJPEG; 55 private Bitmap[] mPNG; 59 private static Bitmap codec(Bitmap src, Bitmap.CompressFormat format, 75 mBitmaps = new Bitmap[6]; 77 mBitmaps[0] = Bitmap.createBitmap(colors, 0, STRIDE, WIDTH, HEIGHT, 78 Bitmap.Config.ARGB_8888); 79 mBitmaps[1] = Bitmap.createBitmap(colors, 0, STRIDE, WIDTH, HEIGHT [all...] |
| /packages/apps/Gallery2/src/com/android/gallery3d/gadget/ |
| WidgetSource.java | 21 import android.graphics.Bitmap; 26 public Bitmap getImage(int index);
|
| /external/webkit/Source/JavaScriptCore/wtf/ |
| Bitmap.h | 30 class Bitmap { 35 Bitmap(); 63 inline Bitmap<size>::Bitmap() 69 inline bool Bitmap<size>::get(size_t n) const 75 inline void Bitmap<size>::set(size_t n) 81 inline bool Bitmap<size>::testAndSet(size_t n) 91 inline void Bitmap<size>::clear(size_t n) 97 inline void Bitmap<size>::clearAll() 103 inline size_t Bitmap<size>::nextPossiblyUnset(size_t start) cons [all...] |
| /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/analyzer/ |
| ColorChecker.java | 19 import android.graphics.Bitmap; 33 private Bitmap mDebugOutput; 36 /** Construct a ColorChecker from a source Bitmap. 41 public ColorChecker(Bitmap source) { 46 /** Returns whether the ColorChecker pattern was found in the source bitmap 48 * @return true if the pattern was found in the source Bitmap. false 86 /** Returns debug Bitmap image showing detected candidate patches and the 92 * @return A low-resolution version of the source Bitmap with overlaid 95 public Bitmap getDebugOutput() { 99 native boolean findNative(Bitmap input) [all...] |
| /development/ndk/platforms/android-8/samples/bitmap-plasma/src/com/example/plasma/ |
| Plasma.java | 22 import android.graphics.Bitmap; 42 private Bitmap mBitmap; 46 private static native void renderPlasma(Bitmap bitmap, long time_ms); 54 mBitmap = Bitmap.createBitmap(W, H, Bitmap.Config.RGB_565);
|
| /packages/apps/Gallery/src/com/android/camera/gallery/ |
| IImage.java | 19 import android.graphics.Bitmap; 37 /** Get the bitmap for the full size image. */ 38 public abstract Bitmap fullSizeBitmap(int minSideLength, 40 public abstract Bitmap fullSizeBitmap(int minSideLength, 71 // Get the bitmap of the medium thumbnail 72 public abstract Bitmap thumbBitmap(boolean rotateAsNeeded); 74 // Get the bitmap of the mini thumbnail. 75 public abstract Bitmap miniThumbBitmap();
|
| /packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
| PhotoProcessor.java | 18 import android.graphics.Bitmap; 26 * Class that converts a bitmap (or byte array representing a bitmap) into a display 34 private final Bitmap mOriginal; 35 private Bitmap mDisplayPhoto; 36 private Bitmap mThumbnailPhoto; 39 * Initializes a photo processor for the given bitmap. 40 * @param original The bitmap to process. 43 * @throws IOException If bitmap decoding or scaling fails. 45 public PhotoProcessor(Bitmap original, int maxDisplayPhotoDim, int maxThumbnailPhotoDim [all...] |