Home
last modified time | relevance | path

Searched refs:appList (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DPreviewInflater.java82 final List<ResolveInfo> appList = packageManager.queryIntentActivitiesAsUser( in getWidgetInfo() local
84 if (appList.size() == 0) { in getWidgetInfo()
90 if (wouldLaunchResolverActivity(resolved, appList)) { in getWidgetInfo()
111 final List<ResolveInfo> appList = packageManager.queryIntentActivitiesAsUser( in wouldLaunchResolverActivity() local
113 if (appList.size() == 0) { in wouldLaunchResolverActivity()
118 return wouldLaunchResolverActivity(resolved, appList); in wouldLaunchResolverActivity()
122 ResolveInfo resolved, List<ResolveInfo> appList) { in wouldLaunchResolverActivity() argument
125 for (int i = 0; i < appList.size(); i++) { in wouldLaunchResolverActivity()
126 ResolveInfo tmp = appList.get(i); in wouldLaunchResolverActivity()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DSecureCameraLaunchManager.java230 final List<ResolveInfo> appList = packageManager.queryIntentActivitiesAsUser( in targetWillWaitForCameraAvailable() local
232 if (appList.size() == 0) { in targetWillWaitForCameraAvailable()
248 if (wouldLaunchResolverActivity(resolved, appList)) { in targetWillWaitForCameraAvailable()
272 private boolean wouldLaunchResolverActivity(ResolveInfo resolved, List<ResolveInfo> appList) { in wouldLaunchResolverActivity() argument
274 for (int i = 0; i < appList.size(); i++) { in wouldLaunchResolverActivity()
275 ResolveInfo tmp = appList.get(i); in wouldLaunchResolverActivity()
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
DKeyguardActivityLauncher.java72 final List<ResolveInfo> appList = packageManager.queryIntentActivitiesAsUser( in getCameraWidgetInfo() local
74 if (appList.size() == 0) { in getCameraWidgetInfo()
82 if (wouldLaunchResolverActivity(resolved, appList)) { in getCameraWidgetInfo()
271 List<ResolveInfo> appList = packageManager.queryIntentActivitiesAsUser( in wouldLaunchResolverActivity() local
273 return wouldLaunchResolverActivity(resolved, appList); in wouldLaunchResolverActivity()
276 private boolean wouldLaunchResolverActivity(ResolveInfo resolved, List<ResolveInfo> appList) { in wouldLaunchResolverActivity() argument
279 for (int i = 0; i < appList.size(); i++) { in wouldLaunchResolverActivity()
280 ResolveInfo tmp = appList.get(i); in wouldLaunchResolverActivity()
/frameworks/ml/bordeaux/learning/predictor_histogram/java/android/bordeaux/learning/
DHistogramPredictor.java255 List<Map.Entry<String, Double> > appList = in findTopClasses() local
257 appList.addAll(appCandidates.entrySet()); in findTopClasses()
258 Collections.sort(appList, new Comparator<Map.Entry<String, Double> >() { in findTopClasses()
266 topK = appList.size(); in findTopClasses()
268 return appList.subList(0, Math.min(topK, appList.size())); in findTopClasses()
/frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/
DMemoryUsageTest.java135 String appList = args.getString(KEY_APPS); in parseArgs() local
140 if (appList == null && procList == null) in parseArgs()
142 if (appList != null) { in parseArgs()
143 mNameToResultKey.putAll(parseListToMap(appList)); in parseArgs()
/frameworks/base/tests/AppLaunch/src/com/android/tests/applaunch/
DAppLaunch.java153 String appList = args.getString(KEY_APPS); in parseArgs() local
154 if (appList == null) in parseArgs()
157 String appNames[] = appList.split("\\|"); in parseArgs()