Home
last modified time | relevance | path

Searched refs:initialIntents (Results 1 – 13 of 13) sorted by relevance

/packages/modules/IntentResolver/tests/unit/src/com/android/intentresolver/
DChooserListAdapterDataTest.kt89 val initialIntents = in test_twoTargetsWithNonOverlappingInitialIntent_threeTargetsInResolverAdapter() constant
104 initialIntents, in test_twoTargetsWithNonOverlappingInitialIntent_threeTargetsInResolverAdapter()
154 val initialIntents = in test_twoTargetsWithOverlappingInitialIntent_oneTargetsInResolverAdapter() constant
167 initialIntents, in test_twoTargetsWithOverlappingInitialIntent_oneTargetsInResolverAdapter()
DResolverListAdapterTest.kt718 val initialIntents = in test_twoTargetsWithNonOverlappingInitialIntent_threeTargetsInAdapter() constant
740 initialIntents, in test_twoTargetsWithNonOverlappingInitialIntent_threeTargetsInAdapter()
773 assertThat(testSubject.count).isEqualTo(resolvedTargets.size + initialIntents.size) in test_twoTargetsWithNonOverlappingInitialIntent_threeTargetsInAdapter()
775 .isEqualTo(initialIntents[0].component) in test_twoTargetsWithNonOverlappingInitialIntent_threeTargetsInAdapter()
806 val initialIntents = in test_twoTargetsWithOverlappingInitialIntent_twoTargetsInAdapter() constant
814 initialIntents, in test_twoTargetsWithOverlappingInitialIntent_twoTargetsInAdapter()
849 .isEqualTo(initialIntents[0].component) in test_twoTargetsWithOverlappingInitialIntent_twoTargetsInAdapter()
/packages/modules/IntentResolver/java/src/com/android/intentresolver/ui/viewmodel/
DChooserRequestReader.kt107 val initialIntents = in readChooserRequest() constant
181 initialIntents = initialIntents, in readChooserRequest()
/packages/modules/IntentResolver/java/src/com/android/intentresolver/
DChooserListAdapter.java180 Intent[] initialIntents, in ChooserListAdapter() argument
197 initialIntents, in ChooserListAdapter()
220 Intent[] initialIntents, in ChooserListAdapter() argument
269 if (initialIntents != null) { in ChooserListAdapter()
270 for (int i = 0; i < initialIntents.length; i++) { in ChooserListAdapter()
271 final Intent ii = initialIntents[i]; in ChooserListAdapter()
DResolverActivity.java422 Intent[] initialIntents,
429 initialIntents, resolutionList, filterLastUsed);
432 initialIntents, resolutionList, filterLastUsed);
893 Intent[] initialIntents,
901 initialIntents,
945 Intent[] initialIntents,
951 initialIntents,
978 Intent[] initialIntents,
1004 selectedProfile == PROFILE_PERSONAL ? initialIntents : null,
1014 selectedProfile == PROFILE_WORK ? initialIntents : null,
DResolverListAdapter.java103 Intent[] initialIntents, in ResolverListAdapter() argument
115 initialIntents, in ResolverListAdapter()
132 Intent[] initialIntents, in ResolverListAdapter() argument
145 mInitialIntents = initialIntents; in ResolverListAdapter()
DChooserActivity.java1510 List<Intent> initialIntents, in createMultiProfilePagerAdapter() argument
1516 Intent[] initialIntentArray = initialIntents.toArray(new Intent[0]); in createMultiProfilePagerAdapter()
2091 Intent[] initialIntents,
2096 initialIntents,
2137 Intent[] initialIntents,
2149 initialIntents,
/packages/modules/IntentResolver/java/src/com/android/intentresolver/interactive/domain/interactor/
DInteractiveSessionInteractor.kt123 initialIntents = newRequest.initialIntents, in onIntentUpdated()
/packages/modules/IntentResolver/tests/activity/src/com/android/intentresolver/
DChooserWrapperActivity.java53 Intent[] initialIntents, in createChooserListAdapter() argument
65 initialIntents, in createChooserListAdapter()
DResolverWrapperActivity.java64 Intent[] initialIntents, in createResolverListAdapter() argument
71 initialIntents, in createResolverListAdapter()
DChooserActivityTest.java2630 Intent[] initialIntents = { in testWorkTab_withInitialIntents_workTabDoesNotIncludePersonalInitialIntents() local
2634 Intent chooserIntent = createChooserIntent(createSendTextIntent(), initialIntents); in testWorkTab_withInitialIntents_workTabDoesNotIncludePersonalInitialIntents()
2655 Intent[] initialIntents = { in testWorkTab_xProfileIntentsDisabled_personalToWork_nonSendIntent_emptyStateShown() local
2659 Intent chooserIntent = createChooserIntent(new Intent(), initialIntents); in testWorkTab_xProfileIntentsDisabled_personalToWork_nonSendIntent_emptyStateShown()
2682 Intent[] initialIntents = { in testWorkTab_noWorkAppsAvailable_nonSendIntent_emptyStateShown() local
2686 Intent chooserIntent = createChooserIntent(new Intent(), initialIntents); in testWorkTab_noWorkAppsAvailable_nonSendIntent_emptyStateShown()
2806 private Intent createChooserIntent(Intent intent, Intent[] initialIntents) { in createChooserIntent() argument
2813 if (initialIntents != null) { in createChooserIntent()
2814 chooserIntent.putExtra(Intent.EXTRA_INITIAL_INTENTS, initialIntents); in createChooserIntent()
/packages/modules/IntentResolver/java/src/com/android/intentresolver/data/model/
DChooserRequest.kt133 val initialIntents: List<Intent> = emptyList(), in <lambda>() constant in com.android.intentresolver.data.model.ChooserRequest
/packages/modules/IntentResolver/tests/unit/src/com/android/intentresolver/interactive/domain/interactor/
DInteractiveSessionInteractorTest.kt363 assertThat(updatedRequest.initialIntents) in <lambda>()