Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/tests/InputMethodSystemServerTests/src/com/android/server/inputmethod/
H A DInputMethodManagerServiceRestrictImeAmountTest.java46 List<ResolveInfo> resolveInfoList = new ArrayList<>(); in testFilterInputMethodServices_loadsAllImesBelowThreshold() local
48 resolveInfoList.add( in testFilterInputMethodServices_loadsAllImesBelowThreshold()
59 List<ResolveInfo> resolveInfoList = new ArrayList<>(); in testFilterInputMethodServices_ignoresImesBeyondThreshold() local
61 resolveInfoList.add( in testFilterInputMethodServices_ignoresImesBeyondThreshold()
73 List<ResolveInfo> resolveInfoList = new ArrayList<>(); in testFilterInputMethodServices_loadsSystemImesBeyondThreshold() local
75 resolveInfoList.add( in testFilterInputMethodServices_loadsSystemImesBeyondThreshold()
88 List<ResolveInfo> resolveInfoList = new ArrayList<>(); in testFilterInputMethodServices_ignoresImesBeyondThresholdFromTwoPackages() local
90 resolveInfoList.add( in testFilterInputMethodServices_ignoresImesBeyondThresholdFromTwoPackages()
94 resolveInfoList.add( in testFilterInputMethodServices_ignoresImesBeyondThresholdFromTwoPackages()
111 resolveInfoList.add( in testFilterInputMethodServices_stillLoadsEnabledImesBeyondThreshold()
[all …]
/aosp14/frameworks/base/telecomm/java/android/telecom/
H A DDefaultDialerManager.java156 List<ResolveInfo> resolveInfoList = in getInstalledDialerApplications() local
161 for (ResolveInfo resolveInfo : resolveInfoList) { in getInstalledDialerApplications()
217 final List<ResolveInfo> resolveInfoList = context.getPackageManager() in filterByIntent() local
219 final int length = resolveInfoList.size(); in filterByIntent()
221 final ActivityInfo info = resolveInfoList.get(i).activityInfo; in filterByIntent()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qrcodescanner/controller/
H A DQRCodeScannerControllerTest.java84 List<ResolveInfo> resolveInfoList = new ArrayList(); in setUpLocal() local
86 resolveInfoList = new ArrayList(Collections.singleton(new ResolveInfo())); in setUpLocal()
89 any(Integer.class))).thenReturn(resolveInfoList); in setUpLocal()
/aosp14/frameworks/base/core/tests/coretests/src/android/provider/
H A DSettingsProviderTest.java314 List<ResolveInfo> resolveInfoList = packageManager.queryIntentActivities(intent, 0); in assertCanBeHandled() local
315 assertNotNull(resolveInfoList); in assertCanBeHandled()
317 assertTrue(resolveInfoList.size() > 0); in assertCanBeHandled()
/aosp14/frameworks/base/services/core/java/com/android/server/pm/
H A DCrossProfileIntentResolverEngine.java674 List<ResolveInfo> resolveInfoList = new ArrayList<>(); in resolveInfoFromCrossProfileDomainInfo() local
677 resolveInfoList.add(crossProfileDomainInfos.get(infoIndex).mResolveInfo); in resolveInfoFromCrossProfileDomainInfo()
680 return resolveInfoList; in resolveInfoFromCrossProfileDomainInfo()
/aosp14/frameworks/base/telephony/common/com/android/internal/telephony/
H A DSmsApplication.java928 List<ResolveInfo> resolveInfoList = packageManager.queryIntentActivities( in replacePreferredActivity() local
931 List<ComponentName> components = resolveInfoList.stream().map(info -> in replacePreferredActivity()