HomeSort by relevance Sort by last modified time
    Searched refs:getAllocationByteCount (Results 1 - 15 of 15) sorted by null

  /frameworks/support/v4/kitkat/android/support/v4/graphics/
BitmapCompatKitKat.java 25 static int getAllocationByteCount(Bitmap bitmap) {
26 return bitmap.getAllocationByteCount();
  /frameworks/support/v4/honeycomb_mr1/android/support/v4/graphics/
BitmapCompatHoneycombMr1.java 25 static int getAllocationByteCount(Bitmap bitmap) {
  /frameworks/support/v4/java/android/support/v4/graphics/
BitmapCompat.java 31 public int getAllocationByteCount(Bitmap bitmap);
45 public int getAllocationByteCount(Bitmap bitmap) {
52 public int getAllocationByteCount(Bitmap bitmap) {
53 return BitmapCompatHoneycombMr1.getAllocationByteCount(bitmap);
71 public int getAllocationByteCount(Bitmap bitmap) {
72 return BitmapCompatKitKat.getAllocationByteCount(bitmap);
108 public static int getAllocationByteCount(Bitmap bitmap) {
109 return IMPL.getAllocationByteCount(bitmap);
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
SizeStrategy.java 21 final Key key = keyPool.get(bitmap.getAllocationByteCount());
54 final int removedSize = removed.getAllocationByteCount();
81 return bitmap.getAllocationByteCount();
99 return getBitmapString(bitmap.getAllocationByteCount());
  /external/glide/library/src/main/java/com/bumptech/glide/util/
Util.java 33 return bitmap.getAllocationByteCount();
  /development/samples/Support7Demos/src/com/example/android/supportv7/graphics/
ImageLoader.java 97 return BitmapCompat.getAllocationByteCount(value);
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapTest.java 386 int alloc = mBitmap.getAllocationByteCount();
392 assertEquals(mBitmap.getAllocationByteCount(), alloc);
397 assertEquals(mBitmap.getAllocationByteCount(), alloc);
493 int alloc = mBitmap.getAllocationByteCount();
497 assertEquals(mBitmap.getAllocationByteCount(), alloc);
614 int alloc = mBitmap.getAllocationByteCount();
618 assertEquals(mBitmap.getAllocationByteCount(), alloc);
639 int alloc = mBitmap.getAllocationByteCount();
643 assertEquals(mBitmap.getAllocationByteCount(), alloc);
891 int alloc = mBitmap.getAllocationByteCount();
    [all...]
BitmapFactoryTest.java 355 assertEquals(originalSize, start.getAllocationByteCount());
363 assertEquals(originalSize, pass.getAllocationByteCount());
448 assertEquals(originalSize, original.getAllocationByteCount());
455 assertEquals(originalSize, reduced.getAllocationByteCount());
532 assertFalse(purgeableBitmap.getAllocationByteCount() == 0);
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageCache.java 535 return byteCount <= candidate.getAllocationByteCount();
616 // From KitKat onward use getAllocationByteCount() as allocated bytes can potentially be
619 return bitmap.getAllocationByteCount();
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageCache.java 535 return byteCount <= candidate.getAllocationByteCount();
616 // From KitKat onward use getAllocationByteCount() as allocated bytes can potentially be
619 return bitmap.getAllocationByteCount();
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
ImageCache.java 535 return byteCount <= candidate.getAllocationByteCount();
616 // From KitKat onward use getAllocationByteCount() as allocated bytes can potentially be
619 return bitmap.getAllocationByteCount();
  /frameworks/base/graphics/java/android/graphics/
Bitmap.java 199 * while {@link #getAllocationByteCount()} will reflect that of the initial
    [all...]
  /prebuilts/sdk/current/support/v13/
android-support-v13.jar 
  /prebuilts/sdk/current/support/v4/
android-support-v4.jar 
  /prebuilts/sdk/21/
android.jar 

Completed in 1213 milliseconds