Searched refs:createBitmap (Results 26 - 50 of 70) sorted by last modified time

123

/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DTextGammaActivity.java49 Bitmap b = Bitmap.createBitmap(gamma.getWidth(), gamma.getHeight(),
H A DThinPatchesActivity.java58 mTexture = Bitmap.createBitmap(4, 3, Bitmap.Config.ARGB_8888);
/frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
H A DImageProcessingActivity.java346 Bitmap b = Bitmap.createBitmap(source.getWidth(), source.getHeight(), source.getConfig());
/frameworks/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/
H A DImageProcessingActivity2.java339 Bitmap b = Bitmap.createBitmap(source.getWidth(), source.getHeight(), source.getConfig());
/frameworks/base/tests/RenderScriptTests/LivePreview/src/com/android/rs/livepreview/
H A DCameraPreviewActivity.java362 Bitmap.createBitmap(
/frameworks/base/tests/RenderScriptTests/SampleTest/src/com/android/rs/sample/
H A DSampleRSActivity.java144 Bitmap b2 = Bitmap.createBitmap(b.getWidth(), b.getHeight(), b.getConfig());
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DNotificationBuilderTest.java486 return Bitmap.createBitmap(bd.getBitmap());
H A DNotificationTestList.java943 return Bitmap.createBitmap(bd.getBitmap());
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBitmapFactory_Delegate.java115 bm = Bitmap_Delegate.createBitmap(ninePatch.getImage(), true /*isMutable*/,
130 bm = Bitmap_Delegate.createBitmap(is, true, density);
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...]
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
H A DRgbPlayerActivity.java132 mBitmap = Bitmap.createBitmap(mWidth, mHeight,
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
H A DMediaFrameworkTest.java92 mDestBitmap = Bitmap.createBitmap((int)640, (int)480, Bitmap.Config.ARGB_8888);
H A DVideoEditorHelper.java141 overlayBmp = Bitmap.createBitmap(srcBitmap);
/frameworks/base/media/java/android/media/
H A DRemoteControlClient.java1129 Bitmap outBitmap = Bitmap.createBitmap(newWidth, newHeight, newConfig);
H A DThumbnailUtils.java379 Bitmap b2 = Bitmap.createBitmap(targetWidth, targetHeight,
429 b1 = Bitmap.createBitmap(source, 0, 0,
442 Bitmap b2 = Bitmap.createBitmap(
/frameworks/base/media/java/android/media/videoeditor/
H A DMediaArtistNativeHelper.java3817 ? Bitmap.createBitmap(decWidth, decHeight, Bitmap.Config.ARGB_8888)
3830 Bitmap outBitmap = Bitmap.createBitmap(
H A DMediaImageItem.java996 final Bitmap bitmap = Bitmap.createBitmap((int)bitmapWidth,
H A DOverlayFrame.java341 final Bitmap destBitmap = Bitmap.createBitmap((int)width,
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DGLFrame.java244 Bitmap result = Bitmap.createBitmap(getFormat().getWidth(),
H A DNativeFrame.java192 Bitmap result = Bitmap.createBitmap(getFormat().getWidth(),
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DRedEyeFilter.java162 Bitmap redEyeBitmap = Bitmap.createBitmap(bitmapWidth, bitmapHeight, Bitmap.Config.ARGB_8888);
/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 DBitmapFactoryTest.java33 Bitmap bitmap1 = Bitmap.createBitmap(
H A DBitmapTest.java27 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);
62 Bitmap bm1 = Bitmap.createBitmap(100, 200, Bitmap.Config.ARGB_8888);
63 Bitmap bm2 = Bitmap.createBitmap(new int[100 * 200], 100, 200,
86 Bitmap bm = Bitmap.createBitmap(colors, 10, 10,
112 Bitmap bm = Bitmap.createBitmap(colors, 10, 10, Bitmap.Config.RGB_565);
130 Bitmap bm1 = Bitmap.createBitmap(colors, 10, 10, config);
131 Bitmap bm2 = Bitmap.createBitmap(10, 10, config);
156 Bitmap bm1 = Bitmap.createBitmap(color
[all...]
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...]

Completed in 580 milliseconds

123