Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
H A DRootWindowContainerTests.java958 final List<ResolveInfo> resolutions = new ArrayList<>(); in testResolveSecondaryHomeActivityForced() local
962 resolutions.add(resolveInfo); in testResolveSecondaryHomeActivityForced()
963 doReturn(resolutions).when(mRootWindowContainer).resolveActivities(anyInt(), in testResolveSecondaryHomeActivityForced()
984 final List<ResolveInfo> resolutions = new ArrayList<>(); in testResolveSecondaryHomeActivityWhenPrimaryHomeNotSupportMultiDisplay() local
985 doReturn(resolutions).when(mRootWindowContainer).resolveActivities(anyInt(), any()); in testResolveSecondaryHomeActivityWhenPrimaryHomeNotSupportMultiDisplay()
1005 final List<ResolveInfo> resolutions = new ArrayList<>(); in testResolveSecondaryHomeActivityWhenPrimaryHomeSupportMultiDisplay() local
1014 resolutions.add(infoFake1); in testResolveSecondaryHomeActivityWhenPrimaryHomeSupportMultiDisplay()
1015 resolutions.add(infoFake2); in testResolveSecondaryHomeActivityWhenPrimaryHomeSupportMultiDisplay()
1037 final List<ResolveInfo> resolutions = new ArrayList<>(); in testResolveSecondaryHomeActivityWhenOtherActivitySupportMultiDisplay() local
1048 resolutions.add(infoFake1); in testResolveSecondaryHomeActivityWhenOtherActivitySupportMultiDisplay()
[all …]
/aosp14/frameworks/base/packages/SystemUI/tools/lint/
H A Drun_lint.sh45 If the error cannot be fixed immediately, there are 3 possible resolutions:
H A DREADME12 possible resolutions:
/aosp14/frameworks/base/core/proto/android/service/
H A Dprint.proto94 // List of supported resolutions
95 repeated ResolutionProto resolutions = 3; field
/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DRootWindowContainer.java1537 final List<ResolveInfo> resolutions = resolveActivities(userId, homeIntent); in resolveSecondaryHomeActivity() local
1538 final int size = resolutions.size(); in resolveSecondaryHomeActivity()
1542 ResolveInfo resolveInfo = resolutions.get(i); in resolveSecondaryHomeActivity()
1552 aInfo = resolutions.get(0).activityInfo; in resolveSecondaryHomeActivity()
1579 List<ResolveInfo> resolutions; in resolveActivities() local
1583 resolutions = AppGlobals.getPackageManager().queryIntentActivities(homeIntent, in resolveActivities()
1587 resolutions = new ArrayList<>(); in resolveActivities()
1589 return resolutions; in resolveActivities()
/aosp14/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPrintActivity.java904 List<Resolution> resolutions = capabilities.getResolutions(); in onAdvancedPrintOptionsActivityResult() local
905 final int resolutionCount = resolutions.size(); in onAdvancedPrintOptionsActivityResult()
907 Resolution resolution = resolutions.get(i); in onAdvancedPrintOptionsActivityResult()