HomeSort by relevance Sort by last modified time
    Searched defs:inBitmap (Results 1 - 10 of 10) sorted by null

  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
ImageResizer.java 111 * @param cache The ImageCache used to find candidate bitmaps for use with inBitmap
126 // If we're running on Honeycomb or newer, try to use inBitmap
142 * @param cache The ImageCache used to find candidate bitmaps for use with inBitmap
157 // If we're running on Honeycomb or newer, try to use inBitmap
173 * @param cache The ImageCache used to find candidate bitmaps for use with inBitmap
191 // If we're running on Honeycomb or newer, try to use inBitmap
201 // inBitmap only works with mutable bitmaps so force the decoder to
206 // Try and find a bitmap to use for inBitmap
207 Bitmap inBitmap = cache.getBitmapFromReusableSet(options);
209 if (inBitmap != null)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
BitmapFactory.java 64 * Checking whether the return value matches the value of the inBitmap
69 public Bitmap inBitmap;
393 if (bm == null && opts != null && opts.inBitmap != null) {
431 if (bm == null && opts != null && opts.inBitmap != null) {
492 if (opts == null || (opts.inScaled && opts.inBitmap == null)) {
519 if (opts == null || (opts.inScaled && opts.inBitmap == null)) {
539 if (bm == null && opts != null && opts.inBitmap != null) {
623 if (bm == null && opts != null && opts.inBitmap != null) {
  /packages/apps/Gallery2/src/com/android/photos/data/
MediaCacheUtils.java 78 public static boolean downsample(File inBitmap, MediaSize targetSize, File outBitmap) {
86 Bitmap bitmap = DecodeUtils.decodeThumbnail(sJobStub, inBitmap.getPath(), options, size,
95 public static boolean downsample(Bitmap inBitmap, MediaSize size, File outBitmap) {
101 if (!needsDownsample(inBitmap, size)) {
102 success = writeAndRecycle(inBitmap, outBitmap);
104 float maxDimension = Math.max(inBitmap.getWidth(), inBitmap.getHeight());
106 int targetWidth = Math.round(scale * inBitmap.getWidth());
107 int targetHeight = Math.round(scale * inBitmap.getHeight());
108 Bitmap scaled = Bitmap.createScaledBitmap(inBitmap, targetWidth, targetHeight, false)
    [all...]
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 220 milliseconds