Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/
DActivityIntentHelper.java70 final List<ResolveInfo> appList = packageManager.queryIntentActivitiesAsUser( in getTargetActivityInfo() local
72 if (appList.size() == 0) { in getTargetActivityInfo()
77 if (resolved == null || wouldLaunchResolverActivity(resolved, appList)) { in getTargetActivityInfo()
107 public boolean wouldLaunchResolverActivity(ResolveInfo resolved, List<ResolveInfo> appList) { in wouldLaunchResolverActivity() argument
110 for (int i = 0; i < appList.size(); i++) { in wouldLaunchResolverActivity()
111 ResolveInfo tmp = appList.get(i); in wouldLaunchResolverActivity()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DPreviewInflater.java128 final List<ResolveInfo> appList = packageManager.queryIntentActivitiesAsUser( in getWidgetInfo() local
130 if (appList.size() == 0) { in getWidgetInfo()
136 if (mActivityIntentHelper.wouldLaunchResolverActivity(resolved, appList)) { in getWidgetInfo()
/frameworks/base/telephony/common/com/android/internal/telephony/
DCarrierAppUtils.java391 List<ApplicationInfo> appList = associatedApps.get(carrierAppPackage); in getDefaultCarrierAssociatedAppsHelper() local
392 if (appList == null) { in getDefaultCarrierAssociatedAppsHelper()
393 appList = new ArrayList<>(); in getDefaultCarrierAssociatedAppsHelper()
394 associatedApps.put(carrierAppPackage, appList); in getDefaultCarrierAssociatedAppsHelper()
396 appList.add(ai); in getDefaultCarrierAssociatedAppsHelper()
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/applications/
DApplicationsStateRoboTest.java414 final ArrayList<ApplicationInfo> appList = new ArrayList<>(); in removeAndInstall_noWorkprofile_doResumeIfNeededLocked_shouldClearEntries() local
416 appList.add(appInfo); in removeAndInstall_noWorkprofile_doResumeIfNeededLocked_shouldClearEntries()
418 appList.add(appInfo); in removeAndInstall_noWorkprofile_doResumeIfNeededLocked_shouldClearEntries()
419 setupDoResumeIfNeededLocked(appList, null); in removeAndInstall_noWorkprofile_doResumeIfNeededLocked_shouldClearEntries()
452 final ArrayList<ApplicationInfo> appList = new ArrayList<>(); in noAppRemoved_noWorkprofile_doResumeIfNeededLocked_shouldNotClearEntries() local
454 appList.add(appInfo); in noAppRemoved_noWorkprofile_doResumeIfNeededLocked_shouldNotClearEntries()
456 appList.add(appInfo); in noAppRemoved_noWorkprofile_doResumeIfNeededLocked_shouldNotClearEntries()
457 setupDoResumeIfNeededLocked(appList, null); in noAppRemoved_noWorkprofile_doResumeIfNeededLocked_shouldNotClearEntries()
/frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/
DMemoryUsageTest.java138 String appList = args.getString(KEY_APPS); in parseArgs() local
143 if (appList == null && procList == null) in parseArgs()
145 if (appList != null) { in parseArgs()
146 mNameToResultKey.putAll(parseListToMap(appList)); in parseArgs()
/frameworks/base/tests/AppLaunchWear/src/com/android/tests/applaunch/
DAppLaunch.java456 String appList = args.getString(KEY_APPS); in parseArgs() local
457 if (appList == null) in parseArgs()
460 String appNames[] = appList.split("\\|"); in parseArgs()
/frameworks/base/tests/AppLaunch/src/com/android/tests/applaunch/
DAppLaunch.java947 String appList = args.getString(KEY_APPS); in parseArgs() local
948 if (appList == null) in parseArgs()
951 String appNames[] = appList.split("\\|"); in parseArgs()