Home | History | Annotate | Download | only in launcher2

Lines Matching refs:apps

31  * Stores the list of all applications for the all apps view.
36 /** The list off all apps. */
39 /** The list of apps that have been added since the last notify() call. */
42 /** The list of apps that have been removed since the last notify() call. */
44 /** The list of apps that have been modified since the last notify() call. */
100 * Remove the apps for the given apk identified by packageName.
176 final List<ResolveInfo> apps = packageManager.queryIntentActivities(mainIntent, 0);
177 return apps != null ? apps : new ArrayList<ResolveInfo>();
181 * Returns whether <em>apps</em> contains <em>component</em>.
183 private static boolean findActivity(List<ResolveInfo> apps, ComponentName component) {
185 for (ResolveInfo info : apps) {
195 * Returns whether <em>apps</em> contains <em>component</em>.
197 private static boolean findActivity(ArrayList<ApplicationInfo> apps, ComponentName component) {
198 final int N = apps.size();
200 final ApplicationInfo info = apps.get(i);