HomeSort by relevance Sort by last modified time
    Searched defs:appList (Results 1 - 10 of 10) sorted by null

  /development/apps/Development/src/com/android/development/
AppHwConfigList.java 82 List<ApplicationInfo> appList = mPm.getInstalledApplications(0);
83 for (ApplicationInfo app : appList) {
RunningProcesses.java 82 List<ActivityManager.RunningAppProcessInfo> appList = am.getRunningAppProcesses();
83 for (ActivityManager.RunningAppProcessInfo app : appList) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
PreviewInflater.java 122 final List<ResolveInfo> appList = packageManager.queryIntentActivitiesAsUser(
124 if (appList.size() == 0) {
130 if (wouldLaunchResolverActivity(resolved, appList)) {
152 final List<ResolveInfo> appList = packageManager.queryIntentActivitiesAsUser(
154 if (appList.size() == 0) {
159 if (resolved == null || wouldLaunchResolverActivity(resolved, appList)) {
167 ResolveInfo resolved, List<ResolveInfo> appList) {
170 for (int i = 0; i < appList.size(); i++) {
171 ResolveInfo tmp = appList.get(i);
  /external/icu/icu4c/source/samples/layout/
cgnomelayout.c 35 static GSList *appList = NULL;
272 appList = g_slist_prepend(appList, app);
289 appList = g_slist_remove(appList, app);
293 if (appList == NULL) {
gnomelayout.cpp 45 static GSList *appList = NULL;
273 appList = g_slist_prepend(appList, app);
290 appList = g_slist_remove(appList, app);
294 if (appList == NULL) {
  /packages/apps/Launcher3/src/com/android/launcher3/
DefaultLayoutParser.java 112 final List<ResolveInfo> appList = mPackageManager.queryIntentActivities(
117 if (wouldLaunchResolverActivity(resolved, appList)) {
119 final ResolveInfo systemApp = getSingleSystemActivity(appList);
141 private ResolveInfo getSingleSystemActivity(List<ResolveInfo> appList) {
143 final int N = appList.size();
147 appList.get(i).activityInfo.packageName, 0);
152 systemResolve = appList.get(i);
164 List<ResolveInfo> appList) {
167 for (int i = 0; i < appList.size(); ++i) {
168 ResolveInfo tmp = appList.get(i)
    [all...]
  /packages/apps/ManagedProvisioning/tests/src/com/android/managedprovisioning/common/
UtilsTest.java 98 List<ApplicationInfo> appList = Arrays.asList(
103 .thenReturn(new ParceledListSlice(appList));
  /frameworks/base/tests/AppLaunch/src/com/android/tests/applaunch/
AppLaunch.java 159 String appList = args.getString(KEY_APPS);
160 if (appList == null)
163 String appNames[] = appList.split("\\|");
  /frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/
MemoryUsageTest.java 135 String appList = args.getString(KEY_APPS);
140 if (appList == null && procList == null)
142 if (appList != null) {
143 mNameToResultKey.putAll(parseListToMap(appList));
  /frameworks/ml/bordeaux/learning/predictor_histogram/java/android/bordeaux/learning/
HistogramPredictor.java 255 List<Map.Entry<String, Double> > appList =
257 appList.addAll(appCandidates.entrySet());
258 Collections.sort(appList, new Comparator<Map.Entry<String, Double> >() {
266 topK = appList.size();
268 return appList.subList(0, Math.min(topK, appList.size()));

Completed in 1407 milliseconds