Home | History | Annotate | Download | only in bitmap

Lines Matching full:decode

19  * decode is complete, even if the task is cancelled, the result is placed in the given cache.
20 * A {@link BitmapView} client may be notified on decode begin and completion.
25 * GIFs are supported, but their decode does not reuse bitmaps at all. The resulting
47 * The decode task uses this class to get input to decode. You must implement at least one of
60 * Callback interface for clients to be notified of decode state changes and completion.
152 // disable inBitmap-- bitmap reuse doesn't work with different decode regions due
200 "decode thread wants a bitmap. cache dump:\n" + mCache.toDebugString());
210 if (DEBUG) System.err.println("*** allocated new bitmap in decode thread: "
213 if (DEBUG) System.out.println("*** reusing existing bitmap in decode thread: "
251 Trace.beginSection("decode" + mOpts.inSampleSize);
258 decodeResult = decode(fd, in);
260 System.err.println("decode failed: reason='" + e.getMessage() + "' ss="
266 decodeResult = decode(fd, in);
359 // Center the decode on the top 1/3.
362 if (DEBUG) System.out.println("rect for this decode is: " + outSrcRect
367 // been corrected. We need to decode the uncorrected source rectangle. Calculate true
399 private Bitmap decode(AssetFileDescriptor fd, InputStream in) {