Searched defs:mIconCache (Results 1 - 8 of 8) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DAllAppsList.java47 private IconCache mIconCache; field in class:AllAppsList
53 mIconCache = iconCache;
94 add(new ApplicationInfo(context.getPackageManager(), info, mIconCache, null));
113 mIconCache.flush();
130 mIconCache.remove(component);
145 add(new ApplicationInfo(context.getPackageManager(), info, mIconCache, null));
147 mIconCache.remove(applicationInfo.componentName);
148 mIconCache.getTitleAndIcon(applicationInfo, info, null);
159 mIconCache.remove(component);
H A DLauncherApplication.java35 public IconCache mIconCache; field in class:LauncherApplication
50 mIconCache = new IconCache(this);
51 mModel = new LauncherModel(this, mIconCache);
110 return mIconCache;
H A DFolder.java74 private final IconCache mIconCache; field in class:Folder
123 mIconCache = ((LauncherApplication)context.getApplicationContext()).getIconCache();
541 new FastBitmapDrawable(item.getIcon(mIconCache)), null, null);
H A DAppsCustomizePagedView.java266 private IconCache mIconCache; field in class:AppsCustomizePagedView
332 mIconCache = ((LauncherApplication) context.getApplicationContext()).getIconCache();
806 Drawable icon = mIconCache.getFullResIcon(createShortcutInfo.shortcutActivityInfo);
1249 Drawable icon = mIconCache.getFullResIcon(info);
1345 icon = mIconCache.getFullResIcon(packageName, iconId);
H A DLauncherModel.java140 private IconCache mIconCache; field in class:LauncherModel
171 mIconCache = iconCache;
174 mIconCache.getFullResDefaultActivityIcon(), app);
1894 mIconCache, mLabelCache));
2139 icon = mIconCache.getIcon(componentName, resolveInfo, labelCache);
2226 mIconCache.getFullResIcon(resources, id), context);
2369 mIconCache.getFullResIcon(resources, id), context);
2419 Bitmap loaded = info.getIcon(mIconCache);
H A DLauncher.java258 private IconCache mIconCache; field in class:Launcher
360 mIconCache = app.getIconCache();
498 mIconCache.flush();
1000 favorite.applyFromShortcutInfo(info, mIconCache);
1833 FolderIcon.fromXml(R.layout.folder_icon, this, layout, folderInfo, mIconCache);
3361 (FolderInfo) item, mIconCache);
H A DWorkspace.java138 private IconCache mIconCache; field in class:Workspace
410 mIconCache = app.getIconCache();
3122 (FolderInfo) info, mIconCache);
3778 info.updateIcon(mIconCache);
3780 shortcut.applyFromShortcutInfo(info, mIconCache);
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DCachingIconLoader.java43 private final WeakHashMap<String, Entry> mIconCache; field in class:CachingIconLoader
52 mIconCache = new WeakHashMap<String, Entry>();
87 NowOrLater<Drawable.ConstantState> cached = mIconCache.get(drawableId);
96 mIconCache.put(resourceUri, drawable);

Completed in 139 milliseconds