Lines Matching full:bitmap
34 import android.graphics.Bitmap;
502 final Bitmap b = makeMiniThumbBitmap(THUMB_SIZE, THUMB_SIZE,
519 private void updateThumbBitmap(Item item, Bitmap b) {
620 private static void placeImage(Bitmap image, Canvas c, Paint paint,
634 private Bitmap makeMiniThumbBitmap(int width, int height,
653 final Bitmap b = Bitmap.createBitmap(width, height,
654 Bitmap.Config.ARGB_8888);
681 Bitmap temp = null;
690 Bitmap newMap = temp.copy(temp.getConfig(), true);
708 Bitmap thumb = Bitmap.createBitmap(imageWidth, imageHeight,
709 Bitmap.Config.ARGB_8888);
797 // The thumbnail bitmap is set by setThumbBitmap() later because we want
800 public Bitmap mThumbBitmap; // the thumbnail bitmap for the image list
815 public void setThumbBitmap(Bitmap thumbBitmap) {