Home
last modified time | relevance | path

Searched refs:remoteInput (Results 1 – 7 of 7) sorted by relevance

/packages/inputmethods/LatinIME/tools/EditTextVariations/src/com/android/inputmethod/tools/edittextvariations/
DNotificationUtils.java76 RemoteInput remoteInput = new RemoteInput.Builder(KEY_REPLY) in sendDirectReplyNotification() local
86 .addRemoteInput(remoteInput) in sendDirectReplyNotification()
100 final Bundle remoteInput = RemoteInput.getResultsFromIntent(intent); in onReceiveDirectReply() local
101 if (remoteInput == null) { in onReceiveDirectReply()
104 final CharSequence reply = remoteInput.getCharSequence(KEY_REPLY); in onReceiveDirectReply()
/packages/apps/Messaging/src/com/android/messaging/datamodel/
DNoConfirmationSmsSendService.java137 final Bundle remoteInput = RemoteInput.getResultsFromIntent(intent); in getText() local
138 if (remoteInput != null) { in getText()
139 final CharSequence extra = remoteInput.getCharSequence(textType); in getText()
DBugleNotifications.java910 final RemoteInput remoteInput = new RemoteInput.Builder(Intent.EXTRA_TEXT).setLabel( in addWearableVoiceReplyAction() local
914 actionBuilder.addRemoteInput(remoteInput); in addWearableVoiceReplyAction()
/packages/apps/Car/Notification/src/com/android/car/notification/
DNotificationClickHandlerFactory.java416 RemoteInput remoteInput = action.getRemoteInputs()[0];
417 if (remoteInput == null) {
422 messageDataBundle.putCharSequence(remoteInput.getResultKey(),
426 new RemoteInput[]{remoteInput}, resultIntent, messageDataBundle);
/packages/modules/Connectivity/tests/cts/hostside-network-policy/app/src/com/android/cts/netpolicy/hostside/
DMyNotificationListenerService.java64 for (RemoteInput remoteInput : remoteInputs) { in onNotificationPosted()
65 sender.send("remote input extras", remoteInput.getExtras()); in onNotificationPosted()
/packages/modules/Connectivity/tests/cts/hostside-network-policy/app2/src/com/android/cts/netpolicy/hostside/app2/
DMyBroadcastReceiver.java170 final RemoteInput remoteInput = new RemoteInput.Builder("RI") in sendNotification() local
175 .addRemoteInput(remoteInput) in sendNotification()
/packages/modules/ExtServices/java/src/android/ext/services/notification/
DNotificationEntry.java288 for (RemoteInput remoteInput : remoteInputs) { in hasInlineReply()
289 if (remoteInput.getAllowFreeFormInput()) { in hasInlineReply()