Searched defs:createBitmap (Results 1 - 4 of 4) sorted by path

/frameworks/base/core/jni/android/graphics/
H A DGraphics.cpp347 jobject GraphicsJNI::createBitmap(JNIEnv* env, SkBitmap* bitmap, jbyteArray buffer, function in class:GraphicsJNI
360 jobject GraphicsJNI::createBitmap(JNIEnv* env, SkBitmap* bitmap, bool isMutable, function in class:GraphicsJNI
363 return createBitmap(env, bitmap, NULL, isMutable, ninepatch, NULL, density);
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java479 Bitmap b = Bitmap.createBitmap(src, 0, 0, width, height, m, filter);
496 public static Bitmap createBitmap(Bitmap src) { method in class:Bitmap
497 return createBitmap(src, 0, 0, src.getWidth(), src.getHeight());
513 public static Bitmap createBitmap(Bitmap source, int x, int y, int width, int height) { method in class:Bitmap
514 return createBitmap(source, x, y, width, height, null, false);
540 public static Bitmap createBitmap(Bitmap source, int x, int y, int width, int height, method in class:Bitmap
588 bitmap = createBitmap(neww, newh, newConfig, source.hasAlpha());
599 bitmap = createBitmap(neww, newh, transformed ? Config.ARGB_8888 : newConfig,
632 public static Bitmap createBitmap(int width, int height, Config config) { method in class:Bitmap
633 return createBitmap(widt
647 public static Bitmap createBitmap(DisplayMetrics display, int width, method in class:Bitmap
665 private static Bitmap createBitmap(int width, int height, Config config, boolean hasAlpha) { method in class:Bitmap
684 private static Bitmap createBitmap(DisplayMetrics display, int width, int height, method in class:Bitmap
723 public static Bitmap createBitmap(int colors[], int offset, int stride, method in class:Bitmap
748 public static Bitmap createBitmap(DisplayMetrics display, int colors[], method in class:Bitmap
787 public static Bitmap createBitmap(int colors[], int width, int height, Config config) { method in class:Bitmap
808 public static Bitmap createBitmap(DisplayMetrics display, int colors[], method in class:Bitmap
[all...]
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/
H A DGraphicsPerformanceTests.java92 mDestBitmap = Bitmap.createBitmap(SCREEN_WIDTH, SCREEN_HEIGHT,
163 /** Bitmap to draw. Allocated by subclass's createBitmap() function. */
171 mBitmap = createBitmap();
179 public abstract Bitmap createBitmap(); method in class:GraphicsPerformanceTests.DrawBitmapTest
204 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap7x7
205 return Bitmap.createBitmap(7, 7, Bitmap.Config.RGB_565);
222 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap15x15
223 return Bitmap.createBitmap(15, 15, Bitmap.Config.RGB_565);
240 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap31x31
241 return Bitmap.createBitmap(3
258 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap63x63
276 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap127x127
294 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap319x239
312 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap319x479
330 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap8x8
348 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap16x16
366 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap32x32
384 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap64x64
402 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap128x128
420 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap320x240
438 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap320x480
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBitmap_Delegate.java93 public static Bitmap createBitmap(File input, boolean isMutable, Density density) method in class:Bitmap_Delegate
98 return createBitmap(delegate, isMutable, density.getDpiValue());
111 public static Bitmap createBitmap(InputStream input, boolean isMutable, Density density) method in class:Bitmap_Delegate
116 return createBitmap(delegate, isMutable, density.getDpiValue());
129 public static Bitmap createBitmap(BufferedImage image, boolean isMutable, method in class:Bitmap_Delegate
134 return createBitmap(delegate, isMutable, density.getDpiValue());
214 return createBitmap(delegate, mutable, Bitmap.getDefaultDensity());
242 return createBitmap(delegate, isMutable, Bitmap.getDefaultDensity());
451 return createBitmap(delegate, false /*isMutable*/,
522 private static Bitmap createBitmap(Bitmap_Delegat method in class:Bitmap_Delegate
[all...]

Completed in 444 milliseconds