Lines Matching defs:createBitmap

479         Bitmap b = Bitmap.createBitmap(src, 0, 0, width, height, m, filter);
496 public static Bitmap createBitmap(Bitmap src) {
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) {
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,
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) {
633 return createBitmap(width, height, config, true);
647 public static Bitmap createBitmap(DisplayMetrics display, int width,
649 return createBitmap(display, width, height, config, true);
665 private static Bitmap createBitmap(int width, int height, Config config, boolean hasAlpha) {
666 return createBitmap(null, width, height, config, hasAlpha);
684 private static Bitmap createBitmap(DisplayMetrics display, int width, int height,
723 public static Bitmap createBitmap(int colors[], int offset, int stride,
725 return createBitmap(null, colors, offset, stride, width, height, config);
748 public static Bitmap createBitmap(DisplayMetrics display, int colors[],
787 public static Bitmap createBitmap(int colors[], int width, int height, Config config) {
788 return createBitmap(null, colors, 0, width, width, height, config);
808 public static Bitmap createBitmap(DisplayMetrics display, int colors[],
810 return createBitmap(display, colors, 0, width, width, height, config);