Home
last modified time | relevance | path

Searched refs:FastBitmapDrawable (Results 1 – 18 of 18) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/
DFastBitmapDrawable.java37 public class FastBitmapDrawable extends Drawable { class
80 private static final Property<FastBitmapDrawable, Float> BRIGHTNESS
81 = new Property<FastBitmapDrawable, Float>(Float.TYPE, "brightness") {
83 public Float get(FastBitmapDrawable fastBitmapDrawable) {
88 public void set(FastBitmapDrawable fastBitmapDrawable, Float value) {
103 public FastBitmapDrawable(Bitmap b) { in FastBitmapDrawable() method in FastBitmapDrawable
DClickShadowView.java86 .setDuration(FastBitmapDrawable.CLICK_FEEDBACK_DURATION) in animateShadow()
87 .setInterpolator(FastBitmapDrawable.CLICK_FEEDBACK_INTERPOLATOR) in animateShadow()
DBubbleTextView.java222 FastBitmapDrawable iconDrawable = DrawableFactory.get(getContext()).newIcon(icon, info); in applyIconAndLabel()
574 if (mIcon instanceof FastBitmapDrawable) { in applyBadgeState()
583 mBadgePalette = ((FastBitmapDrawable) mIcon).getIconPalette(); in applyBadgeState()
DPendingAppWidgetHostView.java140 FastBitmapDrawable disabledIcon = drawableFactory.newIcon(mIcon, mInfo); in reapplyItemInfo()
/packages/apps/Launcher3/src/com/android/launcher3/graphics/
DDrawableFactory.java33 import com.android.launcher3.FastBitmapDrawable;
69 public FastBitmapDrawable newIcon(Bitmap icon, ItemInfo info) { in newIcon()
70 return new FastBitmapDrawable(icon); in newIcon()
118 FastBitmapDrawable d = new FastBitmapDrawable(badgeBitmap); in getBadgeForUser()
DPreloadIconDrawable.java35 import com.android.launcher3.FastBitmapDrawable;
42 public class PreloadIconDrawable extends FastBitmapDrawable {
/packages/apps/Launcher2/src/com/android/launcher2/
DHolographicViewHelper.java48 FastBitmapDrawable originalD = new FastBitmapDrawable(original); in generatePressedFocusedStates()
49 FastBitmapDrawable outlineD = new FastBitmapDrawable(outline); in generatePressedFocusedStates()
DPagedViewWidget.java97 FastBitmapDrawable preview = (FastBitmapDrawable) image.getDrawable(); in onDetachedFromWindow()
148 void applyPreview(FastBitmapDrawable preview, int index) { in applyPreview()
DFastBitmapDrawable.java27 class FastBitmapDrawable extends Drawable { class
34 FastBitmapDrawable(Bitmap b) { in FastBitmapDrawable() method in FastBitmapDrawable
DPagedViewIcon.java59 setCompoundDrawablesWithIntrinsicBounds(null, new FastBitmapDrawable(mIcon), null, null); in applyFromApplicationInfo()
DAppsCustomizePagedView.java722 FastBitmapDrawable previewDrawable = (FastBitmapDrawable) image.getDrawable(); in beginDraggingWidget()
1312 widget.applyPreview(new FastBitmapDrawable(preview), i); in onSyncWidgetPageItems()
DBubbleTextView.java94 new FastBitmapDrawable(b), in applyFromShortcutInfo()
DFolder.java525 new FastBitmapDrawable(item.getIcon(mIconCache)), null, null); in createAndAddShortcut()
DLauncherModel.java2437 icon = Utilities.createIconBitmap(new FastBitmapDrawable((Bitmap)bitmap), context); in infoFromShortcutIntent()
/packages/apps/Launcher3/src/com/android/launcher3/folder/
DFolderIcon.java59 import com.android.launcher3.FastBitmapDrawable;
501 if (d instanceof FastBitmapDrawable) {
502 FastBitmapDrawable fd = (FastBitmapDrawable) d;
/packages/apps/Music/src/com/android/music/
DMusicUtils.java831 private static class FastBitmapDrawable extends Drawable { class in MusicUtils
833 public FastBitmapDrawable(Bitmap b) { in FastBitmapDrawable() method in MusicUtils.FastBitmapDrawable
900 d = new FastBitmapDrawable(b); in getCachedArtwork()
/packages/apps/Launcher3/
Dproguard.flags53 -keep class com.android.launcher3.FastBitmapDrawable {
/packages/apps/Launcher3/src/com/android/launcher3/allapps/
DAllAppsFastScrollHelper.java23 import com.android.launcher3.FastBitmapDrawable;