Searched refs:newApps (Results 1 – 3 of 3) sorted by relevance
140 Set<String> newApps = new HashSet<String>(); in removeShortcut() local141 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()
3492 Set<String> newApps = new HashSet<String>(); in bindItems() local3493 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()
3797 Set<String> newApps = sp.getStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY,3801 if (newApps != null) {3802 synchronized (newApps) {3803 Iterator<String> iter = newApps.iterator();