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

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBitmap.java82 public static Bitmap createBitmap(Bitmap src) { method in class:Bitmap
83 return createBitmap(src, 0, 0, src.getWidth(), src.getHeight(), null, false);
97 public static Bitmap createBitmap(Bitmap source, int x, int y, method in class:Bitmap
119 public static Bitmap createBitmap(Bitmap source, int x, int y, int width, method in class:Bitmap
182 public static Bitmap createBitmap(int width, int height, Config config) { method in class:Bitmap
203 public static Bitmap createBitmap(int colors[], int offset, int stride, method in class:Bitmap
235 public static Bitmap createBitmap(int colors[], int width, int height, method in class:Bitmap
237 return createBitmap(colors, 0, width, width, height, config);
/frameworks/base/tests/AndroidTests/src/com/android/unit_tests/
H A DGraphicsPerformanceTests.java90 mDestBitmap = Bitmap.createBitmap(SCREEN_WIDTH, SCREEN_HEIGHT,
161 /** Bitmap to draw. Allocated by subclass's createBitmap() function. */
169 mBitmap = createBitmap();
177 public abstract Bitmap createBitmap(); method in class:GraphicsPerformanceTests.DrawBitmapTest
202 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap7x7
203 return Bitmap.createBitmap(7, 7, Bitmap.Config.RGB_565);
220 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap15x15
221 return Bitmap.createBitmap(15, 15, Bitmap.Config.RGB_565);
238 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap31x31
239 return Bitmap.createBitmap(3
256 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap63x63
274 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap127x127
292 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap319x239
310 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap319x479
328 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap8x8
346 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap16x16
364 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap32x32
382 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap64x64
400 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap128x128
418 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap320x240
436 public Bitmap createBitmap() { method in class:GraphicsPerformanceTests.DrawBitmap320x480
[all...]
/frameworks/base/core/jni/android/graphics/
H A DGraphics.cpp353 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 97 milliseconds