Home
last modified time | relevance | path

Searched refs:pickerIntent (Results 1 – 2 of 2) sorted by relevance

/packages/providers/MediaProvider/photopicker/tests/src/com/android/photopicker/core/theme/
DAccentColorHelperTest.kt36 var pickerIntent = Intent() in testAccentColorHelper_differentIntentActions_accentColorsNotSet() variable
41 pickerIntent.setAction(MediaStore.ACTION_USER_SELECT_IMAGES_FOR_APP) in testAccentColorHelper_differentIntentActions_accentColorsNotSet()
42 pickerIntent.putExtra(MediaStore.EXTRA_PICK_IMAGES_ACCENT_COLOR, validAccentColor) in testAccentColorHelper_differentIntentActions_accentColorsNotSet()
43 assertExceptionThrownDueToInvalidInput(pickerIntent) in testAccentColorHelper_differentIntentActions_accentColorsNotSet()
46 pickerIntent.setAction(Intent.ACTION_GET_CONTENT) in testAccentColorHelper_differentIntentActions_accentColorsNotSet()
47 pickerIntent.putExtra(MediaStore.EXTRA_PICK_IMAGES_ACCENT_COLOR, validAccentColor) in testAccentColorHelper_differentIntentActions_accentColorsNotSet()
48 assertExceptionThrownDueToInvalidInput(pickerIntent) in testAccentColorHelper_differentIntentActions_accentColorsNotSet()
51 pickerIntent.setAction(MediaStore.ACTION_PICK_IMAGES) in testAccentColorHelper_differentIntentActions_accentColorsNotSet()
52 pickerIntent.putExtra(MediaStore.EXTRA_PICK_IMAGES_ACCENT_COLOR, validAccentColor) in testAccentColorHelper_differentIntentActions_accentColorsNotSet()
53 val accentColorHelperPickImagesMode = AccentColorHelper(pickerIntent) in testAccentColorHelper_differentIntentActions_accentColorsNotSet()
[all …]
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/permission/utils/
DKotlinUtils.kt659 val pickerIntent = in <lambda>() constant
663 activity.startActivityForResultAsUser(pickerIntent, requestCode, user) in <lambda>()