Home | History | Annotate | Download | only in data

Lines Matching refs:bitmap

19 import android.graphics.Bitmap;
36 Bitmap bitmap;
65 mStore.put(n.bitmap.getWidth(), n.nextInBucket);
88 mSizeBytes -= n.bitmap.getByteCount();
89 if (recycleBitmap) n.bitmap.recycle();
90 n.bitmap = null;
102 public synchronized Bitmap get(int width, int height) {
105 if (cur.bitmap.getHeight() == height) {
106 Bitmap b = cur.bitmap;
115 public synchronized boolean put(Bitmap b) {
125 newNode.bitmap = b;