/packages/modules/IntentResolver/tests/unit/src/com/android/intentresolver/ |
D | ChooserListAdapterDataTest.kt | 91 val initialIntents = in test_twoTargetsWithNonOverlappingInitialIntent_threeTargetsInResolverAdapter() constant 106 initialIntents, in test_twoTargetsWithNonOverlappingInitialIntent_threeTargetsInResolverAdapter() 157 val initialIntents = in test_twoTargetsWithOverlappingInitialIntent_oneTargetsInResolverAdapter() constant 170 initialIntents, in test_twoTargetsWithOverlappingInitialIntent_oneTargetsInResolverAdapter()
|
D | ResolverListAdapterTest.kt | 719 val initialIntents = in test_twoTargetsWithNonOverlappingInitialIntent_threeTargetsInAdapter() constant 741 initialIntents, in test_twoTargetsWithNonOverlappingInitialIntent_threeTargetsInAdapter() 774 assertThat(testSubject.count).isEqualTo(resolvedTargets.size + initialIntents.size) in test_twoTargetsWithNonOverlappingInitialIntent_threeTargetsInAdapter() 776 .isEqualTo(initialIntents[0].component) in test_twoTargetsWithNonOverlappingInitialIntent_threeTargetsInAdapter() 807 val initialIntents = in test_twoTargetsWithOverlappingInitialIntent_twoTargetsInAdapter() constant 815 initialIntents, in test_twoTargetsWithOverlappingInitialIntent_twoTargetsInAdapter() 850 .isEqualTo(initialIntents[0].component) in test_twoTargetsWithOverlappingInitialIntent_twoTargetsInAdapter()
|
/packages/modules/IntentResolver/java/src/com/android/intentresolver/ui/viewmodel/ |
D | ChooserRequestReader.kt | 95 val initialIntents = in readChooserRequest() constant 170 initialIntents = initialIntents, in readChooserRequest()
|
/packages/modules/IntentResolver/java/src/com/android/intentresolver/ |
D | ChooserListAdapter.java | 161 Intent[] initialIntents, in ChooserListAdapter() argument 179 initialIntents, in ChooserListAdapter() 202 Intent[] initialIntents, in ChooserListAdapter() argument 253 if (initialIntents != null) { in ChooserListAdapter() 254 for (int i = 0; i < initialIntents.length; i++) { in ChooserListAdapter() 255 final Intent ii = initialIntents[i]; in ChooserListAdapter()
|
D | ResolverActivity.java | 428 Intent[] initialIntents, 435 initialIntents, resolutionList, filterLastUsed); 438 initialIntents, resolutionList, filterLastUsed); 899 Intent[] initialIntents, 907 initialIntents, 951 Intent[] initialIntents, 957 initialIntents, 984 Intent[] initialIntents, 1010 selectedProfile == PROFILE_PERSONAL ? initialIntents : null, 1020 selectedProfile == PROFILE_WORK ? initialIntents : null,
|
D | ResolverListAdapter.java | 105 Intent[] initialIntents, in ResolverListAdapter() argument 117 initialIntents, in ResolverListAdapter() 134 Intent[] initialIntents, in ResolverListAdapter() argument 147 mInitialIntents = initialIntents; in ResolverListAdapter()
|
D | ChooserActivity.java | 1414 List<Intent> initialIntents, in createMultiProfilePagerAdapter() argument 1420 Intent[] initialIntentArray = initialIntents.toArray(new Intent[0]); in createMultiProfilePagerAdapter() 1978 Intent[] initialIntents, 1983 initialIntents, 2025 Intent[] initialIntents, 2037 initialIntents,
|
/packages/modules/IntentResolver/tests/activity/src/com/android/intentresolver/ |
D | ChooserWrapperActivity.java | 55 Intent[] initialIntents, in createChooserListAdapter() argument 67 initialIntents, in createChooserListAdapter()
|
D | ResolverWrapperActivity.java | 64 Intent[] initialIntents, in createResolverListAdapter() argument 71 initialIntents, in createResolverListAdapter()
|
D | ChooserActivityTest.java | 2613 Intent[] initialIntents = { in testWorkTab_withInitialIntents_workTabDoesNotIncludePersonalInitialIntents() local 2617 Intent chooserIntent = createChooserIntent(createSendTextIntent(), initialIntents); in testWorkTab_withInitialIntents_workTabDoesNotIncludePersonalInitialIntents() 2638 Intent[] initialIntents = { in testWorkTab_xProfileIntentsDisabled_personalToWork_nonSendIntent_emptyStateShown() local 2642 Intent chooserIntent = createChooserIntent(new Intent(), initialIntents); in testWorkTab_xProfileIntentsDisabled_personalToWork_nonSendIntent_emptyStateShown() 2665 Intent[] initialIntents = { in testWorkTab_noWorkAppsAvailable_nonSendIntent_emptyStateShown() local 2669 Intent chooserIntent = createChooserIntent(new Intent(), initialIntents); in testWorkTab_noWorkAppsAvailable_nonSendIntent_emptyStateShown() 2787 private Intent createChooserIntent(Intent intent, Intent[] initialIntents) { in createChooserIntent() argument 2794 if (initialIntents != null) { in createChooserIntent() 2795 chooserIntent.putExtra(Intent.EXTRA_INITIAL_INTENTS, initialIntents); in createChooserIntent()
|
/packages/modules/IntentResolver/java/src/com/android/intentresolver/data/model/ |
D | ChooserRequest.kt | 131 val initialIntents: List<Intent> = emptyList(), in <lambda>() constant in com.android.intentresolver.data.model.ChooserRequest
|