Home
last modified time | relevance | path

Searched refs:newApps (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
DUninstallShortcutReceiver.java140 Set<String> newApps = new HashSet<String>(); in removeShortcut() local
141 newApps = sharedPrefs.getStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY, newApps); in removeShortcut()
142 synchronized (newApps) { in removeShortcut()
144 appRemoved = newApps.remove(intent.toUri(0).toString()); in removeShortcut()
148 final Set<String> savedNewApps = newApps; in removeShortcut()
DLauncher.java3492 Set<String> newApps = new HashSet<String>(); in bindItems() local
3493 newApps = mSharedPrefs.getStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY, newApps); in bindItems()
3514 synchronized (newApps) { in bindItems()
3515 if (newApps.contains(uri)) { in bindItems()
3516 animateIconUp = newApps.remove(uri); in bindItems()
DWorkspace.java3797 Set<String> newApps = sp.getStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY,
3801 if (newApps != null) {
3802 synchronized (newApps) {
3803 Iterator<String> iter = newApps.iterator();