Home | History | Annotate | Download | only in src

Lines Matching full:bitmap

21 public class Bitmap {
24 Bitmap.NativeWrapper mNativeWrapper;
35 Bitmap(String name, int width, int height, Bitmap.NativeWrapper nativeData) {
45 return "Bitmap " + mName + ": " + mWidth + "x" + mHeight + " (" +
60 System.out.println("Bitmap has shut down");
67 static Bitmap.NativeWrapper allocNativeStorage(int width, int height) {
70 synchronized (Bitmap.class) {
74 Bitmap.NativeWrapper wrapper = new Bitmap.NativeWrapper(nativeData);
112 PhantomWrapper(Bitmap.NativeWrapper wrapper,
123 * Thread that watches for un-referenced bitmap data.
131 setName("Bitmap Watcher");
140 Bitmap.freeNativeStorage(ref.mNativeData);