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

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBitmap.java89 public static Bitmap createBitmap(Bitmap src) { method in class:Bitmap
90 return createBitmap(src, 0, 0, src.getWidth(), src.getHeight(), null, false);
104 public static Bitmap createBitmap(Bitmap source, int x, int y, method in class:Bitmap
126 public static Bitmap createBitmap(Bitmap source, int x, int y, int width, method in class:Bitmap
189 public static Bitmap createBitmap(int width, int height, Config config) { method in class:Bitmap
210 public static Bitmap createBitmap(int colors[], int offset, int stride, method in class:Bitmap
242 public static Bitmap createBitmap(int colors[], int width, int height, method in class:Bitmap
244 return createBitmap(colors, 0, width, width, height, config);
265 Bitmap b = Bitmap.createBitmap(src, 0, 0, width, height, m, filter);
/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/core/jni/android/graphics/
H A DGraphics.cpp357 jobject GraphicsJNI::createBitmap(JNIEnv* env, SkBitmap* bitmap, bool isMutable, function in class:GraphicsJNI
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java340 Bitmap b = Bitmap.createBitmap(src, 0, 0, width, height, m, filter);
357 public static Bitmap createBitmap(Bitmap src) { method in class:Bitmap
358 return createBitmap(src, 0, 0, src.getWidth(), src.getHeight());
373 public static Bitmap createBitmap(Bitmap source, int x, int y, int width, int height) { method in class:Bitmap
374 return createBitmap(source, x, y, width, height, null, false);
395 public static Bitmap createBitmap(Bitmap source, int x, int y, int width, int height, method in class:Bitmap
423 bitmap = createBitmap(neww, newh,
435 bitmap = createBitmap(neww, newh, hasAlpha ? Config.ARGB_8888 : Config.RGB_565);
467 public static Bitmap createBitmap(int width, int height, Config config) { method in class:Bitmap
491 public static Bitmap createBitmap(in method in class:Bitmap
523 public static Bitmap createBitmap(int colors[], int width, int height, Config config) { method in class:Bitmap
[all...]

Completed in 104 milliseconds