Lines Matching refs:is

11  * distributed under the License is distributed on an "AS IS" BASIS,
71 InputStream is, boolean isShareable) {
73 BitmapRegionDecoder d = BitmapRegionDecoder.newInstance(is, isShareable);
108 public static DumbBitmapRegionDecoder newInstance(InputStream is) {
109 Bitmap b = BitmapFactory.decodeStream(is);
267 InputStream is = mContext.getContentResolver().openInputStream(mUri);
268 return new BufferedInputStream(is);
273 InputStream is = regenerateInputStream();
275 SimpleBitmapRegionDecoderWrapper.newInstance(is, false);
276 Utils.closeSilently(is);
278 is = regenerateInputStream();
279 regionDecoder = DumbBitmapRegionDecoder.newInstance(is);
280 Utils.closeSilently(is);
291 InputStream is = regenerateInputStream();
292 Bitmap b = BitmapFactory.decodeStream(is, null, options);
293 Utils.closeSilently(is);
302 InputStream is = null;
304 is = regenerateInputStream();
305 ei.readExif(is);
306 Utils.closeSilently(is);
318 Utils.closeSilently(is);
332 InputStream is = mRes.openRawResource(mResId);
333 return new BufferedInputStream(is);
337 InputStream is = regenerateInputStream();
339 SimpleBitmapRegionDecoderWrapper.newInstance(is, false);
340 Utils.closeSilently(is);
342 is = regenerateInputStream();
343 regionDecoder = DumbBitmapRegionDecoder.newInstance(is);
344 Utils.closeSilently(is);
355 InputStream is = regenerateInputStream();
356 ei.readExif(is);
357 Utils.closeSilently(is);
393 // Although this is the same size as the Bitmap that is likely already
394 // loaded, the lifecycle is different and interactions are on a different