Searched defs:getAllocationByteCount (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/v4/honeycomb_mr1/android/support/v4/graphics/
H A DBitmapCompatHoneycombMr1.java25 static int getAllocationByteCount(Bitmap bitmap) { method in class:BitmapCompatHoneycombMr1
/frameworks/support/v4/kitkat/android/support/v4/graphics/
H A DBitmapCompatKitKat.java25 static int getAllocationByteCount(Bitmap bitmap) { method in class:BitmapCompatKitKat
26 return bitmap.getAllocationByteCount();
/frameworks/support/v4/java/android/support/v4/graphics/
H A DBitmapCompat.java31 public int getAllocationByteCount(Bitmap bitmap); method in interface:BitmapCompat.BitmapImpl
45 public int getAllocationByteCount(Bitmap bitmap) { method in class:BitmapCompat.BaseBitmapImpl
52 public int getAllocationByteCount(Bitmap bitmap) { method in class:BitmapCompat.HcMr1BitmapCompatImpl
53 return BitmapCompatHoneycombMr1.getAllocationByteCount(bitmap);
71 public int getAllocationByteCount(Bitmap bitmap) { method in class:BitmapCompat.KitKatBitmapCompatImpl
72 return BitmapCompatKitKat.getAllocationByteCount(bitmap);
108 public static int getAllocationByteCount(Bitmap bitmap) { method in class:BitmapCompat
109 return IMPL.getAllocationByteCount(bitmap);
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java200 * while {@link #getAllocationByteCount()} will reflect that of the initial
1190 * see {@link #getAllocationByteCount()}.
1206 * #getAllocationByteCount()}.</p>
1227 public final int getAllocationByteCount() { method in class:Bitmap

Completed in 117 milliseconds