Home
last modified time | relevance | path

Searched refs:actionIntent (Results 1 – 14 of 14) sorted by relevance

/packages/apps/Settings/src/com/android/settings/localepicker/
DNotificationActionActivity.java61 Intent actionIntent = new Intent(Settings.ACTION_LOCALE_SETTINGS); in onCreate() local
62 actionIntent.putExtra(EXTRA_SYSTEM_LOCALE_DIALOG_TYPE, LOCALE_SUGGESTION); in onCreate()
63 actionIntent.putExtra(EXTRA_APP_LOCALE, appLocale); in onCreate()
64 actionIntent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_CLEAR_TOP); in onCreate()
65 getLauncher().launch(actionIntent); in onCreate()
/packages/apps/Dialer/java/com/android/dialer/spam/promo/
DSpamBlockingPromoHelper.java161 PendingIntent actionIntent) { in showSpamBlockingPromoNotification() argument
169 getSpamBlockingPromoNotification(contentIntent, actionIntent)); in showSpamBlockingPromoNotification()
180 PendingIntent contentIntent, PendingIntent actionIntent) { in getSpamBlockingPromoNotification() argument
197 actionIntent) in getSpamBlockingPromoNotification()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/admin/
DNotificationHelperTest.java346 .that(actual.actionIntent.isImmutable()) in isNotificationActionEqualTo()
347 .isEqualTo(expected.actionIntent.isImmutable()); in isNotificationActionEqualTo()
348 assertWithMessage("Action.actionIntent for id %s", notificationId).that(actual.actionIntent) in isNotificationActionEqualTo()
349 .isEqualTo(expected.actionIntent); in isNotificationActionEqualTo()
350 isIntentEqualTo(getIntent(actual.actionIntent), getIntent(expected.actionIntent), in isNotificationActionEqualTo()
/packages/apps/Settings/src/com/android/settings/slices/
DSliceBuilderUtils.java316 final PendingIntent actionIntent = getSliderAction(context, sliceData); in buildSliderSlice() local
338 .setInputAction(actionIntent); in buildSliderSlice()
372 PendingIntent actionIntent = getActionIntent(context, in getToggleAction() local
374 return SliceAction.createToggle(actionIntent, null, isChecked); in getToggleAction()
/packages/apps/Car/Notification/tests/unit/src/com/android/car/notification/utils/
DMockMessageNotificationBuilder.java321 when(action.actionIntent).thenReturn(mPendingIntent); in getMockReplyAction()
348 when(action.actionIntent).thenReturn(mPendingIntent); in getMockMarkAsReadAction()
375 when(action.actionIntent).thenReturn(mPendingIntent); in getMockMuteAction()
/packages/apps/ThemePicker/src/com/android/customization/picker/quickaffordance/ui/viewmodel/
DKeyguardQuickAffordancePickerViewModel.kt279 actionIntent = affordance.enablementActionIntent, in <lambda>()
365 actionIntent: Intent?, in <lambda>()
401 actionIntent?.let { intent -> requestActivityStart(intent) } in <lambda>()
/packages/apps/Car/Notification/src/com/android/car/notification/
DNotificationClickHandlerFactory.java151 int result = sendPendingIntent(action.actionIntent, context, resultIntent); in getActionClickHandler()
159 int result = sendPendingIntent(action.actionIntent, /* context= */ null, in getActionClickHandler()
/packages/modules/Connectivity/tests/cts/hostside-network-policy/app/src/com/android/cts/netpolicy/hostside/
DMyNotificationListenerService.java60 sender.send("action", action.actionIntent); in onNotificationPosted()
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/services/
DTestNotificationService.java177 item.actionIntent.send(); in doCancel()
/packages/apps/Car/Notification/tests/unit/src/com/android/car/notification/
DNotificationClickHandlerFactoryTest.java278 action.actionIntent = mActionIntent; in onClickActionClickHandler_notCarCompatibleMessage_sendsPendingIntent()
303 action.actionIntent = mActionIntent; in onClickActionClickHandler_notCarCompatibleMessage_invokesRegisteredListeners()
/packages/apps/Settings/src/com/android/settings/notification/history/
DNotificationStation.java585 if (action.actionIntent != null) { in generateExtraText()
590 .append(formatPendingIntent(action.actionIntent)); in generateExtraText()
/packages/apps/Car/Notification/src/com/android/car/notification/template/
DCarNotificationActionsView.java223 if (action.actionIntent != null) { in bind()
/packages/modules/Permission/tests/functional/safetycenter/singleuser/src/android/safetycenter/functional/
DSafetyCenterNotificationTest.kt1311 PendingIntentSender.send(action.actionIntent) in sendActionPendingIntentAndWaitWithPermission()
/packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/unit/
DCellBroadcastAlertServiceTest.java877 assertSame(notificationPosted.deleteIntent, notificationPosted.actions[0].actionIntent); in testAddToNotificationBarForWatch()