Lines Matching full:decode
79 /** Returns true if the decoder should try to decode the
85 /** Set to true if the the decoder should try to decode the
173 cancel. This will result in decode() returning false. However, there is
176 and decode() will return true (assuming no other problems were
179 This state is automatically reset at the beginning of decode().
187 /** Passed to the decode method. If kDecodeBounds_Mode is passed, then
196 /** Given a stream, decode it into the specified bitmap.
209 bool decode(SkStream*, SkBitmap* bitmap, SkBitmap::Config pref, Mode, bool reuseBitmap = false);
210 bool decode(SkStream* stream, SkBitmap* bitmap, Mode mode, bool reuseBitmap = false) {
211 return this->decode(stream, bitmap, SkBitmap::kNo_Config, mode, reuseBitmap);
215 * Given a stream, build an index for doing tile-based decode.
225 * Decode a rectangle region in the image specified by rect.
239 /** Decode the image stored in the specified file, and store the result
244 the decoder will attempt to decode the image into that format, unless
259 /** Decode the image stored in the specified memory buffer, and store the
264 the decoder will attempt to decode the image into that format, unless
279 /** Decode the image stored in the specified SkStream, and store the result
284 kNo_Config, the decoder will attempt to decode the image into that
302 what config they should decode into.
308 what config they should decode into.
319 // must be overridden in subclasses. This guy is called by decode(...)
356 a different thread) has requested the decode to cancel. If this returns