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

  /cts/tests/tests/security/src/android/security/cts/
RunningAppProcessInfoTest.java 35 List<ActivityManager.RunningAppProcessInfo> appList =
40 "/aaa0fee0d7a8da347a0c47cef5249c70efee209e", (appList.size() == 1));
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
PreviewInflater.java 125 final List<ResolveInfo> appList = packageManager.queryIntentActivitiesAsUser(
127 if (appList.size() == 0) {
133 if (wouldLaunchResolverActivity(resolved, appList)) {
164 final List<ResolveInfo> appList = packageManager.queryIntentActivitiesAsUser(
166 if (appList.size() == 0) {
171 if (resolved == null || wouldLaunchResolverActivity(resolved, appList)) {
179 ResolveInfo resolved, List<ResolveInfo> appList) {
182 for (int i = 0; i < appList.size(); i++) {
183 ResolveInfo tmp = appList.get(i);
  /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
  /packages/apps/Launcher3/src/com/android/launcher3/
DefaultLayoutParser.java 119 final List<ResolveInfo> appList = mPackageManager.queryIntentActivities(
124 if (wouldLaunchResolverActivity(resolved, appList)) {
126 final ResolveInfo systemApp = getSingleSystemActivity(appList);
148 private ResolveInfo getSingleSystemActivity(List<ResolveInfo> appList) {
150 final int N = appList.size();
154 appList.get(i).activityInfo.packageName, 0);
159 systemResolve = appList.get(i);
171 List<ResolveInfo> appList) {
174 for (int i = 0; i < appList.size(); ++i) {
175 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/base/telephony/java/com/android/internal/telephony/
CarrierAppUtils.java 332 List<ApplicationInfo> appList = associatedApps.get(carrierAppPackage);
333 if (appList == null) {
334 appList = new ArrayList<>();
335 associatedApps.put(carrierAppPackage, appList);
337 appList.add(ai);
  /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;
  /build/tools/droiddoc/templates-pdk/assets/
carousel.js 60 var appList = document.getElementById("app-list");
82 appList.appendChild(a);
  /frameworks/base/tests/AppLaunch/src/com/android/tests/applaunch/
AppLaunch.java 372 String appList = args.getString(KEY_APPS);
373 if (appList == null)
376 String appNames[] = appList.split("\\|");
  /packages/apps/ManagedProvisioning/tests/src/com/android/managedprovisioning/common/
UtilsTest.java 98 List<ApplicationInfo> appList = Arrays.asList(
103 .thenReturn(new ParceledListSlice(appList));

Completed in 859 milliseconds