Searched defs:createBitmap (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/jni/android/graphics/
H A DGraphicsJNI.h77 static jobject createBitmap(JNIEnv* env, SkBitmap* bitmap, jbyteArray buffer,
80 static jobject createBitmap(JNIEnv* env, SkBitmap* bitmap, int bitmapCreateFlags, function in class:GraphicsJNI
82 return createBitmap(env, bitmap, NULL, bitmapCreateFlags, ninePatch, NULL, density);
H A DGraphics.cpp420 jobject GraphicsJNI::createBitmap(JNIEnv* env, SkBitmap* bitmap, jbyteArray buffer, function in class:GraphicsJNI
/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/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DBackingStore.java512 createBitmap();
517 createBitmap();
522 createBitmap();
575 private void createBitmap() { method in class:BackingStore.BitmapBacking
576 mBitmap = Bitmap.createBitmap(mDimensions[0], mDimensions[1], Bitmap.Config.ARGB_8888);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBitmap_Delegate.java102 public static Bitmap createBitmap(File input, boolean isMutable, Density density) method in class:Bitmap_Delegate
104 return createBitmap(input, getPremultipliedBitmapCreateFlags(isMutable), density);
117 public static Bitmap createBitmap(File input, Set<BitmapCreateFlags> createFlags, method in class:Bitmap_Delegate
122 return createBitmap(delegate, createFlags, density.getDpiValue());
135 public static Bitmap createBitmap(InputStream input, boolean isMutable, Density density) method in class:Bitmap_Delegate
137 return createBitmap(input, getPremultipliedBitmapCreateFlags(isMutable), density);
150 public static Bitmap createBitmap(InputStream input, Set<BitmapCreateFlags> createFlags, method in class:Bitmap_Delegate
155 return createBitmap(delegate, createFlags, density.getDpiValue());
168 public static Bitmap createBitmap(BufferedImage image, boolean isMutable, Density density) { method in class:Bitmap_Delegate
169 return createBitmap(imag
182 public static Bitmap createBitmap(BufferedImage image, Set<BitmapCreateFlags> createFlags, method in class:Bitmap_Delegate
609 private static Bitmap createBitmap(Bitmap_Delegate delegate, method in class:Bitmap_Delegate
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPlaybackControlsRow.java437 createBitmap(repeatDrawable.getBitmap(), repeatAllColor));
439 createBitmap(repeatOneDrawable.getBitmap(), repeatOneColor));
479 createBitmap(uncoloredDrawable.getBitmap(), highlightColor));
517 createBitmap(uncoloredDrawable.getBitmap(), highlightColor));
555 createBitmap(uncoloredDrawable.getBitmap(), highlightColor));
565 private static Bitmap createBitmap(Bitmap bitmap, int color) { method in class:PlaybackControlsRow
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java596 Bitmap b = Bitmap.createBitmap(src, 0, 0, width, height, m, filter);
613 public static Bitmap createBitmap(Bitmap src) { method in class:Bitmap
614 return createBitmap(src, 0, 0, src.getWidth(), src.getHeight());
633 public static Bitmap createBitmap(Bitmap source, int x, int y, int width, int height) { method in class:Bitmap
634 return createBitmap(source, x, y, width, height, null, false);
661 public static Bitmap createBitmap(Bitmap source, int x, int y, int width, int height, method in class:Bitmap
709 bitmap = createBitmap(neww, newh, newConfig, source.hasAlpha());
720 bitmap = createBitmap(neww, newh, transformed ? Config.ARGB_8888 : newConfig,
755 public static Bitmap createBitmap(int width, int height, Config config) { method in class:Bitmap
756 return createBitmap(widt
770 public static Bitmap createBitmap(DisplayMetrics display, int width, method in class:Bitmap
788 private static Bitmap createBitmap(int width, int height, Config config, boolean hasAlpha) { method in class:Bitmap
807 private static Bitmap createBitmap(DisplayMetrics display, int width, int height, method in class:Bitmap
844 public static Bitmap createBitmap(int colors[], int offset, int stride, method in class:Bitmap
869 public static Bitmap createBitmap(DisplayMetrics display, int colors[], method in class:Bitmap
908 public static Bitmap createBitmap(int colors[], int width, int height, Config config) { method in class:Bitmap
929 public static Bitmap createBitmap(DisplayMetrics display, int colors[], method in class:Bitmap
[all...]

Completed in 1690 milliseconds