HomeSort by relevance Sort by last modified time
    Searched refs:IconCache (Results 1 - 25 of 37) sorted by null

1 2

  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherApplication.java 38 private IconCache mIconCache;
55 mIconCache = new IconCache(this);
114 IconCache getIconCache() {
ShortcutInfo.java 90 public Bitmap getIcon(IconCache iconCache) {
92 updateIcon(iconCache);
97 public void updateIcon(IconCache iconCache) {
98 mIcon = iconCache.getIcon(intent, user);
99 usingFallbackIcon = iconCache.isDefaultIcon(mIcon);
ApplicationInfo.java 67 public ApplicationInfo(LauncherActivityInfo info, UserHandle user, IconCache iconCache,
81 iconCache.getTitleAndIcon(this, info, labelCache);
AllAppsList.java 45 private IconCache mIconCache;
50 public AllAppsList(IconCache iconCache) {
51 mIconCache = iconCache;
IconCache.java 39 public class IconCache {
41 private static final String TAG = "Launcher.IconCache";
79 public IconCache(LauncherApplication context) {
BubbleTextView.java 90 public void applyFromShortcutInfo(ShortcutInfo info, IconCache iconCache) {
91 Bitmap b = info.getIcon(iconCache);
FolderIcon.java 124 FolderInfo folderInfo, IconCache iconCache) {
  /packages/apps/Launcher3/src/com/android/launcher3/compat/
AppWidgetManagerCompat.java 29 import com.android.launcher3.IconCache;
87 public abstract Drawable loadIcon(LauncherAppWidgetProviderInfo info, IconCache cache);
AppWidgetManagerCompatV16.java 32 import com.android.launcher3.IconCache;
88 public Drawable loadIcon(LauncherAppWidgetProviderInfo info, IconCache cache) {
PackageInstallerCompatVL.java 28 import com.android.launcher3.IconCache;
41 private final IconCache mCache;
AppWidgetManagerCompatVL.java 41 import com.android.launcher3.IconCache;
107 public Drawable loadIcon(LauncherAppWidgetProviderInfo info, IconCache cache) {
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherAppState.java 40 private final IconCache mIconCache;
88 mIconCache = new IconCache(sContext, mInvariantDeviceProfile);
145 public IconCache getIconCache() {
AppInfo.java 83 IconCache iconCache) {
84 this(context, info, user, iconCache,
89 IconCache iconCache, boolean quietModeEnabled) {
100 iconCache.getTitleAndIcon(this, info, true /* useLowResIcon */);
ShortcutInfo.java 198 public Bitmap getIcon(IconCache iconCache) {
200 updateIcon(iconCache);
205 public void updateIcon(IconCache iconCache, boolean useLowRes) {
207 iconCache.getTitleAndIcon(this, promisedIntent != null ? promisedIntent : intent, user,
212 public void updateIcon(IconCache iconCache) {
213 updateIcon(iconCache, shouldUseLowResIcon());
AllAppsList.java 50 private IconCache mIconCache;
57 public AllAppsList(IconCache iconCache, AppFilter appFilter) {
58 mIconCache = iconCache;
LauncherAppWidgetProviderInfo.java 105 public Drawable getIcon(Context context, IconCache cache) {
BubbleTextView.java 42 import com.android.launcher3.IconCache.IconLoadRequest;
144 public void applyFromShortcutInfo(ShortcutInfo info, IconCache iconCache) {
145 applyFromShortcutInfo(info, iconCache, false);
148 public void applyFromShortcutInfo(ShortcutInfo info, IconCache iconCache,
150 Bitmap b = info.getIcon(iconCache);
PendingAppWidgetHostView.java 119 public void updateIcon(IconCache cache) {
IconCache.java 65 public class IconCache {
67 private static final String TAG = "Launcher.IconCache";
115 public IconCache(Context context, InvariantDeviceProfile inv) {
    [all...]
WidgetPreviewLoader.java 66 private final IconCache mIconCache;
75 public WidgetPreviewLoader(Context context, IconCache iconCache) {
77 mIconCache = iconCache;
  /packages/apps/Launcher3/src/com/android/launcher3/model/
WidgetsModel.java 14 import com.android.launcher3.IconCache;
50 private final IconCache mIconCache;
56 public WidgetsModel(Context context, IconCache iconCache, AppFilter appFilter) {
60 mIconCache = iconCache;
  /packages/apps/Settings/src/com/android/settings/dashboard/
DashboardAdapter.java 71 private final IconCache mCache;
91 mCache = new IconCache(context);
438 private static class IconCache {
443 public IconCache(Context context) {
  /packages/apps/Launcher3/src/com/android/launcher3/widget/
WidgetsContainerView.java 38 import com.android.launcher3.IconCache;
61 private IconCache mIconCache;
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
IconCache.java 25 public class IconCache extends Thread {
204 public IconCache(OSUManager osuManager) {
OSUManager.java 100 private final IconCache mIconCache;
117 mIconCache = new IconCache(this);
    [all...]

Completed in 1988 milliseconds

1 2