OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DecodeTask
(Results
1 - 7
of
7
) sorted by null
/packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
ContactResolver.java
26
import com.android.bitmap.
DecodeTask
;
230
final
DecodeTask
.DecodeOptions opts = new
DecodeTask
.DecodeOptions(
231
width, height, 1 / 2f,
DecodeTask
.DecodeOptions.STRATEGY_ROUND_NEAREST);
232
final ReusableBitmap result = new
DecodeTask
(request.contactRequest, opts, null,
260
//
DecodeTask
does not add null results to the cache.
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/
BasicBitmapDrawable.java
29
import com.android.bitmap.
DecodeTask
;
30
import com.android.bitmap.
DecodeTask
.DecodeCallback;
31
import com.android.bitmap.
DecodeTask
.DecodeOptions;
50
* The actual bitmap decode work is handled by {@link
DecodeTask
}.
73
private
DecodeTask
mTask;
94
private static final boolean DEBUG =
DecodeTask
.DEBUG;
334
mTask = new
DecodeTask
(mCurrKey, opts, factory, this, mCache);
ExtendedBitmapDrawable.java
35
import com.android.bitmap.
DecodeTask
;
46
* The actual bitmap decode work is handled by {@link
DecodeTask
}.
/packages/apps/Camera2/src/com/android/camera/
PhotoUI.java
159
private class
DecodeTask
extends AsyncTask<Void, Void, Bitmap> {
164
public
DecodeTask
(byte[] data, int orientation, boolean mirror) {
177
private class DecodeImageForReview extends
DecodeTask
{
304
DecodeTask
task = new
DecodeTask
(jpegData, orientation, mirror);
/frameworks/opt/bitmap/src/com/android/bitmap/
UnrefedBitmapCache.java
42
private final static boolean DEBUG =
DecodeTask
.DEBUG;
DecodeTask.java
49
public class
DecodeTask
extends AsyncTask<Void, Void, ReusableBitmap> {
62
private static final String TAG =
DecodeTask
.class.getSimpleName();
89
* Create new
DecodeTask
.
98
public
DecodeTask
(RequestKey requestKey, DecodeOptions decodeOpts,
528
* Parameters to pass to the
DecodeTask
.
UnrefedPooledCache.java
51
private static final boolean DEBUG =
DecodeTask
.DEBUG;
Completed in 123 milliseconds