OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:newApps
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Launcher2/src/com/android/launcher2/
InstallShortcutReceiver.java
185
Set<String>
newApps
= new HashSet<String>();
187
newApps
= sharedPrefs.getStringSet(NEW_APPS_LIST_KEY,
newApps
);
189
synchronized (
newApps
) {
190
newApps
.add(intent.toUri(0).toString());
192
final Set<String> savedNewApps =
newApps
;
UninstallShortcutReceiver.java
140
Set<String>
newApps
= new HashSet<String>();
141
newApps
= sharedPrefs.getStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY,
newApps
);
142
synchronized (
newApps
) {
144
appRemoved =
newApps
.remove(intent.toUri(0).toString());
148
final Set<String> savedNewApps =
newApps
;
Launcher.java
[
all
...]
Completed in 26 milliseconds