Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/tests/coretests/src/com/android/internal/app/
H A DResolverWrapperAdapter.java37 Intent[] initialIntents, in ResolverWrapperAdapter() argument
42 super(context, payloadIntents, initialIntents, rList, filterLastUsed, in ResolverWrapperAdapter()
H A DResolverWrapperActivity.java54 List<Intent> payloadIntents, Intent[] initialIntents, List<ResolveInfo> rList, in createResolverListAdapter() argument
56 return new ResolverWrapperAdapter(context, payloadIntents, initialIntents, rList, in createResolverListAdapter()
H A DChooserWrapperActivity.java66 Intent[] initialIntents, List<ResolveInfo> rList, boolean filterLastUsed, in createChooserListAdapter() argument
71 return new ChooserListAdapter(context, payloadIntents, initialIntents, rList, in createChooserListAdapter()
H A DChooserListAdapterTest.kt219 initialIntents: Array<out Intent>?,
233 initialIntents,
H A DChooserActivityTest.java2632 Intent[] initialIntents = { in testWorkTab_withInitialIntents_workTabDoesNotIncludePersonalInitialIntents() local
2636 Intent chooserIntent = createChooserIntent(createSendTextIntent(), initialIntents); in testWorkTab_withInitialIntents_workTabDoesNotIncludePersonalInitialIntents()
2665 Intent[] initialIntents = { in testWorkTab_xProfileIntentsDisabled_personalToWork_nonSendIntent_emptyStateShown() local
2669 Intent chooserIntent = createChooserIntent(new Intent(), initialIntents); in testWorkTab_xProfileIntentsDisabled_personalToWork_nonSendIntent_emptyStateShown()
2699 Intent[] initialIntents = { in testWorkTab_noWorkAppsAvailable_nonSendIntent_emptyStateShown() local
2703 Intent chooserIntent = createChooserIntent(new Intent(), initialIntents); in testWorkTab_noWorkAppsAvailable_nonSendIntent_emptyStateShown()
2951 private Intent createChooserIntent(Intent intent, Intent[] initialIntents) { in createChooserIntent() argument
2958 if (initialIntents != null) { in createChooserIntent()
2959 chooserIntent.putExtra(Intent.EXTRA_INITIAL_INTENTS, initialIntents); in createChooserIntent()
/aosp14/frameworks/base/core/java/com/android/internal/app/
H A DResolverActivity.java405 CharSequence title, Intent[] initialIntents,
407 onCreate(savedInstanceState, intent, title, 0, initialIntents, rList,
412 CharSequence title, int defaultTitleRes, Intent[] initialIntents,
519 Intent[] initialIntents,
526 initialIntents, rList, filterLastUsed);
529 initialIntents, rList, filterLastUsed);
643 Intent[] initialIntents,
648 initialIntents,
669 Intent[] initialIntents,
695 selectedProfile == PROFILE_PERSONAL ? initialIntents : null,
[all …]
H A DChooserListAdapter.java142 Intent[] initialIntents, List<ResolveInfo> rList, in ChooserListAdapter() argument
162 if (initialIntents != null) { in ChooserListAdapter()
163 for (int i = 0; i < initialIntents.length; i++) { in ChooserListAdapter()
164 final Intent ii = initialIntents[i]; in ChooserListAdapter()
H A DChooserActivity.java622 Intent[] initialIntents = null; in onCreate() local
625 initialIntents = new Intent[count]; in onCreate()
635 initialIntents[i] = in; in onCreate()
743 initialIntents == null ? 0 : initialIntents.length, in onCreate()
835 Intent[] initialIntents,
840 initialIntents, rList, filterLastUsed);
843 initialIntents, rList, filterLastUsed);
884 Intent[] initialIntents,
890 initialIntents,
905 Intent[] initialIntents,
[all …]
H A DResolverListAdapter.java98 Intent[] initialIntents, List<ResolveInfo> rList, in ResolverListAdapter() argument
106 mInitialIntents = initialIntents; in ResolverListAdapter()