Lines Matching refs:FastBitmapDrawable
40 public class FastBitmapDrawable extends Drawable { class
69 private static final Property<FastBitmapDrawable, Float> SCALE
70 = new Property<FastBitmapDrawable, Float>(Float.TYPE, "scale") {
72 public Float get(FastBitmapDrawable fastBitmapDrawable) {
77 public void set(FastBitmapDrawable fastBitmapDrawable, Float value) {
93 public FastBitmapDrawable(Bitmap b) { in FastBitmapDrawable() method in FastBitmapDrawable
97 public FastBitmapDrawable(BitmapInfo info) { in FastBitmapDrawable() method in FastBitmapDrawable
101 public FastBitmapDrawable(ItemInfoWithIcon info) { in FastBitmapDrawable() method in FastBitmapDrawable
105 protected FastBitmapDrawable(Bitmap b, int iconColor) { in FastBitmapDrawable() method in FastBitmapDrawable
109 protected FastBitmapDrawable(Bitmap b, int iconColor, boolean isDisabled) { in FastBitmapDrawable() method in FastBitmapDrawable
366 return new FastBitmapDrawable(mBitmap, mIconColor, mIsDisabled); in newDrawable()