/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | RemoteInputViewController.kt | 60 var remoteInput: RemoteInput? in <lambda>() variable 94 remoteInput = other.remoteInput in <lambda>() 135 override var remoteInput: RemoteInput? = null in onSendRemoteInput() variable in com.android.systemui.statusbar.policy.RemoteInputViewControllerImpl 165 remoteInput?.let { in onSendRemoteInput() 201 remoteInput = input in onSendRemoteInput() 231 val remoteInput = remoteInput ?: run { in onSendRemoteInput() constant 239 val intent = prepareRemoteInput(remoteInput) in onSendRemoteInput() 294 private fun prepareRemoteInput(remoteInput: RemoteInput): Intent = in onSendRemoteInput() 296 prepareRemoteInputFromText(remoteInput) in onSendRemoteInput() 298 remoteInput, in onSendRemoteInput() [all …]
|
D | SmartReplyStateInflater.kt | 418 smartReplies.remoteInput.editChoicesBeforeSending) in inflateReplyButton() 422 arrayOf(smartReplies.remoteInput), in inflateReplyButton() 423 smartReplies.remoteInput, in inflateReplyButton() 447 results.putString(smartReplies.remoteInput.resultKey, choice.toString()) in inflateReplyButton() 449 RemoteInput.addResultsToIntent(arrayOf(smartReplies.remoteInput), intent, results) in inflateReplyButton()
|
D | SmartReplyView.java | 817 public final RemoteInput remoteInput; field in SmartReplyView.SmartReplies 824 public SmartReplies(@NonNull List<CharSequence> choices, @NonNull RemoteInput remoteInput, in SmartReplies() argument 827 this.remoteInput = remoteInput; in SmartReplies()
|
/frameworks/base/core/java/android/app/ |
D | RemoteInput.java | 456 for (RemoteInput remoteInput : remoteInputs) { in addResultsToIntent() 457 Object result = results.get(remoteInput.getResultKey()); in addResultsToIntent() 459 resultsBundle.putCharSequence(remoteInput.getResultKey(), (CharSequence) result); in addResultsToIntent() 478 public static void addDataResultToIntent(RemoteInput remoteInput, Intent intent, in addDataResultToIntent() argument 495 resultsBundle.putString(remoteInput.getResultKey(), uri.toString()); in addDataResultToIntent()
|
D | Notification.java | 2011 public Builder addRemoteInput(RemoteInput remoteInput) { in addRemoteInput() argument 2015 mRemoteInputs.add(remoteInput); in addRemoteInput() 3753 for (RemoteInput remoteInput : action.getRemoteInputs()) { in findRemoteInputActionPair() 3754 if (remoteInput.getAllowFreeFormInput() || !requiresFreeform) { in findRemoteInputActionPair() 3755 resultRemoteInput = remoteInput; in findRemoteInputActionPair() 11803 UnreadConversation(String[] messages, RemoteInput remoteInput, in UnreadConversation() argument 11807 mRemoteInput = remoteInput; in UnreadConversation() 11920 RemoteInput remoteInput = b.getParcelable(KEY_REMOTE_INPUT, RemoteInput.class); in getUnreadConversationFromBundle() local 11928 remoteInput, in getUnreadConversationFromBundle() 11980 PendingIntent pendingIntent, RemoteInput remoteInput) { in setReplyAction() argument [all …]
|
/frameworks/base/tests/InputMethodStressTest/src/com/android/inputmethod/stresstest/ |
D | NotificationTest.java | 137 RemoteInput remoteInput = new RemoteInput.Builder(REPLY_INPUT_KEY) in postMessagingNotification() local 143 .addRemoteInput(remoteInput) in postMessagingNotification()
|
/frameworks/base/core/java/android/app/slice/ |
D | Slice.java | 480 public Slice.Builder addRemoteInput(RemoteInput remoteInput, in addRemoteInput() argument 483 Objects.requireNonNull(remoteInput); in addRemoteInput() 484 mItems.add(new SliceItem(remoteInput, SliceItem.FORMAT_REMOTE_INPUT, in addRemoteInput()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | NotificationLockscreenUserManagerImpl.java | 352 final boolean remoteInput = mSecureSettings.getIntForUser( in updateLockscreenNotificationSetting() 359 setLockscreenAllowRemoteInput(remoteInput && remoteInputDpm); in updateLockscreenNotificationSetting()
|
/frameworks/base/core/tests/coretests/src/android/app/ |
D | NotificationTest.java | 1415 RemoteInput remoteInput = new RemoteInput.Builder("a").build(); in testFreeformRemoteInputActionPair_hasRemoteInput() local 1419 .addRemoteInput(remoteInput) in testFreeformRemoteInputActionPair_hasRemoteInput() 1420 .addRemoteInput(remoteInput) in testFreeformRemoteInputActionPair_hasRemoteInput() 1436 Assert.assertEquals(remoteInput, remoteInputActionPair.first); in testFreeformRemoteInputActionPair_hasRemoteInput() 1461 RemoteInput remoteInput = in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput() local 1468 .addRemoteInput(remoteInput) in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput() 1474 .addRemoteInput(remoteInput) in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationContentView.java | 329 private int getExtraRemoteInputHeight(RemoteInputView remoteInput) { in getExtraRemoteInputHeight() argument 330 if (remoteInput != null && (remoteInput.isActive() || remoteInput.isSending())) { in getExtraRemoteInputHeight() 1492 smartReplies.remoteInput.getEditChoicesBeforeSending());
|
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | NotificationManagerServiceTest.java | 844 RemoteInput remoteInput = new RemoteInput.Builder("reply_key").setLabel("reply").build(); in getMessageStyleNotifBuilder() local 849 inputIntent).addRemoteInput(remoteInput) in getMessageStyleNotifBuilder() 9502 RemoteInput remoteInput = new RemoteInput.Builder("reply_key").setLabel("reply").build(); in testImmutableDirectReplyContextualActionIntent() local 9507 inputIntent).addRemoteInput(remoteInput) in testImmutableDirectReplyContextualActionIntent() 9533 RemoteInput remoteInput = new RemoteInput.Builder("reply_key").setLabel("reply").build(); in testMutableDirectReplyContextualActionIntent() local 9538 inputIntent).addRemoteInput(remoteInput) in testMutableDirectReplyContextualActionIntent()
|