/packages/apps/Launcher3/src/com/android/launcher3/icons/ |
D | IconCache.java | 35 import com.android.launcher3.ItemInfoWithIcon; 123 final ItemInfoWithIcon info) { in updateIconInBackground() 170 public synchronized void getTitleAndIcon(ItemInfoWithIcon info, in getTitleAndIcon() 180 public synchronized void getTitleAndIcon(ItemInfoWithIcon info, boolean useLowResIcon) { in getTitleAndIcon() 205 @NonNull ItemInfoWithIcon infoInOut, in getTitleAndIcon() 224 protected void applyCacheEntry(CacheEntry entry, ItemInfoWithIcon info) { in applyCacheEntry() 254 void reapplyItemInfo(ItemInfoWithIcon info); in reapplyItemInfo()
|
D | LauncherIcons.java | 30 import com.android.launcher3.ItemInfoWithIcon; 128 boolean badged, @Nullable Supplier<ItemInfoWithIcon> fallbackIconProvider) { in createShortcutIcon() 139 ItemInfoWithIcon fullIcon = fallbackIconProvider.get(); in createShortcutIcon() 158 final ItemInfoWithIcon badge = getShortcutInfoBadge(shortcutInfo, cache); in createShortcutIcon() 168 public ItemInfoWithIcon getShortcutInfoBadge(ShortcutInfo shortcutInfo, IconCache cache) { in getShortcutInfoBadge()
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | ItemInfoWithIcon.java | 28 public abstract class ItemInfoWithIcon extends ItemInfo { class 103 protected ItemInfoWithIcon() { } in ItemInfoWithIcon() method in ItemInfoWithIcon 105 protected ItemInfoWithIcon(ItemInfoWithIcon info) { in ItemInfoWithIcon() method in ItemInfoWithIcon
|
D | BubbleTextView.java | 278 private void applyIconAndLabel(ItemInfoWithIcon info) { in applyIconAndLabel() 533 if (getTag() instanceof ItemInfoWithIcon) { in applyProgressLevel() 534 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag(); in applyProgressLevel() 639 public void reapplyItemInfo(ItemInfoWithIcon info) { in reapplyItemInfo() 668 if (getTag() instanceof ItemInfoWithIcon) { in verifyHighRes() 669 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag(); in verifyHighRes()
|
D | SecondaryDropTarget.java | 5 import static com.android.launcher3.ItemInfoWithIcon.FLAG_SYSTEM_MASK; 6 import static com.android.launcher3.ItemInfoWithIcon.FLAG_SYSTEM_NO; 137 if (info instanceof ItemInfoWithIcon) { in supportsAccessibilityDrop() 138 ItemInfoWithIcon iconInfo = (ItemInfoWithIcon) info; in supportsAccessibilityDrop()
|
D | AppInfo.java | 35 public class AppInfo extends ItemInfoWithIcon { 104 ItemInfoWithIcon info, LauncherActivityInfo lai) { in updateRuntimeFlagsForActivityTarget()
|
D | Utilities.java | 95 import static com.android.launcher3.ItemInfoWithIcon.FLAG_ICON_BADGED; 713 boolean iconBadged = (info instanceof ItemInfoWithIcon) in getBadge() 714 && (((ItemInfoWithIcon) info).runtimeStatusFlags & FLAG_ICON_BADGED) > 0; in getBadge()
|
D | WorkspaceItemInfo.java | 33 public class WorkspaceItemInfo extends ItemInfoWithIcon {
|
D | FastBitmapDrawable.java | 101 public FastBitmapDrawable(ItemInfoWithIcon info) { in FastBitmapDrawable()
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/appprediction/ |
D | PredictionRowView.java | 40 import com.android.launcher3.ItemInfoWithIcon; 100 private final ArrayList<ItemInfoWithIcon> mPredictedApps = new ArrayList<>(); 203 public List<ItemInfoWithIcon> getPredictedApps() { in getPredictedApps() 281 …private List<ItemInfoWithIcon> processPredictedAppComponents(List<ComponentKeyMapper> components) { in processPredictedAppComponents() 287 List<ItemInfoWithIcon> predictedApps = new ArrayList<>(); in processPredictedAppComponents() 289 ItemInfoWithIcon info = mapper.getApp(getAppsStore()); in processPredictedAppComponents() 309 ItemInfoWithIcon appInfo = mPredictedApps.get(i); in fillInLogContainerData()
|
D | ComponentKeyMapper.java | 24 import com.android.launcher3.ItemInfoWithIcon; 58 public ItemInfoWithIcon getApp(AllAppsStore store) { in getApp()
|
D | PredictionUiStateManager.java | 32 import com.android.launcher3.ItemInfoWithIcon; 153 public void reapplyItemInfo(ItemInfoWithIcon info) { } in reapplyItemInfo()
|
/packages/apps/Launcher3/src/com/android/launcher3/touch/ |
D | ItemClickHandler.java | 18 import static com.android.launcher3.ItemInfoWithIcon.FLAG_DISABLED_BY_PUBLISHER; 19 import static com.android.launcher3.ItemInfoWithIcon.FLAG_DISABLED_LOCKED_USER; 20 import static com.android.launcher3.ItemInfoWithIcon.FLAG_DISABLED_QUIET_USER; 21 import static com.android.launcher3.ItemInfoWithIcon.FLAG_DISABLED_SAFEMODE; 22 import static com.android.launcher3.ItemInfoWithIcon.FLAG_DISABLED_SUSPENDED;
|
/packages/apps/Launcher3/src/com/android/launcher3/graphics/ |
D | DrawableFactory.java | 35 import com.android.launcher3.ItemInfoWithIcon; 58 public FastBitmapDrawable newIcon(Context context, ItemInfoWithIcon info) { in newIcon() 75 public PreloadIconDrawable newPendingIcon(Context context, ItemInfoWithIcon info) { in newPendingIcon()
|
D | PreloadIconDrawable.java | 37 import com.android.launcher3.ItemInfoWithIcon; 80 private final ItemInfoWithIcon mItem; 107 public PreloadIconDrawable(ItemInfoWithIcon info, Path progressPath, Context context) { in PreloadIconDrawable()
|
D | PlaceHolderIconDrawable.java | 27 import com.android.launcher3.ItemInfoWithIcon; 44 public PlaceHolderIconDrawable(ItemInfoWithIcon info, Path progressPath, Context context) { in PlaceHolderIconDrawable()
|
/packages/apps/Launcher3/src/com/android/launcher3/model/ |
D | PackageItemInfo.java | 19 import com.android.launcher3.ItemInfoWithIcon; 24 public class PackageItemInfo extends ItemInfoWithIcon {
|
D | LoaderTask.java | 19 import static com.android.launcher3.ItemInfoWithIcon.FLAG_DISABLED_LOCKED_USER; 20 import static com.android.launcher3.ItemInfoWithIcon.FLAG_DISABLED_SAFEMODE; 21 import static com.android.launcher3.ItemInfoWithIcon.FLAG_DISABLED_SUSPENDED; 47 import com.android.launcher3.ItemInfoWithIcon; 489 Supplier<ItemInfoWithIcon> fallbackIconProvider = () -> in loadWorkspace()
|
D | UserLockStateChangedTask.java | 18 import static com.android.launcher3.ItemInfoWithIcon.FLAG_DISABLED_LOCKED_USER;
|
/packages/apps/Launcher3/src/com/android/launcher3/widget/ |
D | PendingAppWidgetHostView.java | 38 import com.android.launcher3.ItemInfoWithIcon; 126 public void reapplyItemInfo(ItemInfoWithIcon info) { in reapplyItemInfo()
|
/packages/apps/Launcher3/src/com/android/launcher3/popup/ |
D | PopupContainerWithArrow.java | 52 import com.android.launcher3.ItemInfoWithIcon; 503 ItemInfoWithIcon itemInfo = (ItemInfoWithIcon) mOriginalIcon.getTag();
|