Lines Matching refs:null
40 private ReusableBitmap mInBitmap = null;
90 return null;
96 ReusableBitmap result = null;
97 AssetFileDescriptor fd = null;
98 InputStream in = null;
109 return null;
116 if (fd == null) {
118 if (in == null) {
119 return null;
125 if (fd != null) {
133 if (fd != null) {
141 if (fd != null) {
154 if (mInBitmap != null) {
156 mInBitmap = null;
157 mOpts.inBitmap = null;
162 return null;
165 if (fd == null) {
167 if (in == null) {
168 return null;
174 if (fd != null) {
175 BitmapFactory.decodeFileDescriptor(fd.getFileDescriptor(), null, mOpts);
177 BitmapFactory.decodeStream(in, null, mOpts);
182 return null;
198 if (mInBitmap == null) {
207 return null;
221 return null;
224 if (fd == null) {
226 if (in == null) {
227 return null;
231 Bitmap decodeResult = null;
245 return null;
249 if (!CROP_DURING_DECODE || (decodeResult == null && !isCancelled())) {
253 if (mInBitmap != null) {
255 mInBitmap = null;
256 mOpts.inBitmap = null;
273 return null;
277 if (decodeResult == null) {
278 return null;
281 if (mInBitmap != null) {
307 if (fd != null) {
313 if (in != null) {
319 if (result != null) {
324 } else if (mInBitmap != null) {
336 if (fd != null) {
343 return null;
378 * given an input stream that may or may not support reset(), or given null.
384 if (in == null) {
401 if (fd != null) {
402 result = BitmapFactory.decodeFileDescriptor(fd.getFileDescriptor(), null, mOpts);
404 result = BitmapFactory.decodeStream(in, null, mOpts);
443 if (result == null) {
448 if (mInBitmap == null) {