Home | History | Annotate | Download | only in util

Lines Matching refs:BitmapWorkerTask

88             final BitmapWorkerTask task = new BitmapWorkerTask(imageView);
138 final BitmapWorkerTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
139 if (bitmapWorkerTask != null) {
140 bitmapWorkerTask.cancel(true);
142 final Object bitmapData = bitmapWorkerTask.data;
155 final BitmapWorkerTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
157 if (bitmapWorkerTask != null) {
158 final Object bitmapData = bitmapWorkerTask.data;
160 bitmapWorkerTask.cancel(true);
177 private static BitmapWorkerTask getBitmapWorkerTask(ImageView imageView) {
191 private class BitmapWorkerTask extends AsyncTask<Object, Void, Bitmap> {
195 public BitmapWorkerTask(ImageView imageView) {
276 final BitmapWorkerTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
278 if (this == bitmapWorkerTask) {
293 private final WeakReference<BitmapWorkerTask> bitmapWorkerTaskReference;
295 public AsyncDrawable(Resources res, Bitmap bitmap, BitmapWorkerTask bitmapWorkerTask) {
298 new WeakReference<BitmapWorkerTask>(bitmapWorkerTask);
301 public BitmapWorkerTask getBitmapWorkerTask() {