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

  /system/extras/tests/workloads/
recentfling.sh 18 (-A) unset appList;;
19 (-L) appList=$2; shift; ret=1;;
27 echo "-L applist : list of applications"
28 echo " default: $appList"
76 for app in $appList
chromefling.sh 17 (-A) unset appList;;
18 (-L) appList=$2; shift; ret=1;;
25 echo "-L applist : list of applications"
26 echo " default: $appList"
systemapps.sh 32 appList="gmail maps chrome youtube play home"
37 (-A) unset appList;;
39 (-L) appList=$2; shift; ret=1;;
48 echo "-L applist : list of applications"
49 echo " default: $appList"
156 for app in $appList
256 for app in $appList
defs.sh 119 appList=${appList:=$dfltAppList}
475 for app in $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);
  /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...]
  /external/icu/icu4c/source/samples/layout/
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) {
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) {
  /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()));
  /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) {
PermissionDetails.java 80 ArrayList<PackageInfo> appList = msg.getData().getParcelableArrayList(KEY_APPS_USING_PERM);
81 createAppList(appList);
  /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));
  /packages/apps/Settings/src/com/android/settings/
UsageStatsActivity.java 62 AppNameComparator(Map<String, String> appList) {
63 mAppLabelList = 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("\\|");
  /build/tools/droiddoc/templates-pdk/assets/
carousel.js 60 var appList = document.getElementById("app-list");
82 appList.appendChild(a);
  /packages/apps/ManagedProvisioning/tests/src/com/android/managedprovisioning/common/
UtilsTest.java 98 List<ApplicationInfo> appList = Arrays.asList(
103 .thenReturn(new ParceledListSlice(appList));

Completed in 1088 milliseconds