/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 | 1957 public Builder addRemoteInput(RemoteInput remoteInput) { in addRemoteInput() argument 1961 mRemoteInputs.add(remoteInput); in addRemoteInput() 3674 for (RemoteInput remoteInput : action.getRemoteInputs()) { in findRemoteInputActionPair() 3675 if (remoteInput.getAllowFreeFormInput() || !requiresFreeform) { in findRemoteInputActionPair() 3676 resultRemoteInput = remoteInput; in findRemoteInputActionPair() 11499 UnreadConversation(String[] messages, RemoteInput remoteInput, in UnreadConversation() argument 11503 mRemoteInput = remoteInput; in UnreadConversation() 11616 RemoteInput remoteInput = b.getParcelable(KEY_REMOTE_INPUT); in getUnreadConversationFromBundle() local 11624 remoteInput, in getUnreadConversationFromBundle() 11676 PendingIntent pendingIntent, RemoteInput remoteInput) { in setReplyAction() argument [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
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 | 718 public final RemoteInput remoteInput; field in SmartReplyView.SmartReplies 725 public SmartReplies(@NonNull List<CharSequence> choices, @NonNull RemoteInput remoteInput, in SmartReplies() argument 728 this.remoteInput = remoteInput; in SmartReplies()
|
D | RemoteInputView.java | 551 public void setRemoteInput(RemoteInput[] remoteInputs, RemoteInput remoteInput, in setRemoteInput() argument 554 mRemoteInput = remoteInput; in setRemoteInput() 556 mEditText.setSupportedMimeTypes(remoteInput.getAllowedDataTypes()); in setRemoteInput()
|
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | NotificationTest.java | 478 RemoteInput remoteInput = new RemoteInput.Builder("a").build(); in testFreeformRemoteInputActionPair_hasRemoteInput() local 482 .addRemoteInput(remoteInput) in testFreeformRemoteInputActionPair_hasRemoteInput() 483 .addRemoteInput(remoteInput) in testFreeformRemoteInputActionPair_hasRemoteInput() 499 assertEquals(remoteInput, remoteInputActionPair.first); in testFreeformRemoteInputActionPair_hasRemoteInput() 522 RemoteInput remoteInput = in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput() local 529 .addRemoteInput(remoteInput) in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput() 535 .addRemoteInput(remoteInput) in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput()
|
D | NotificationManagerServiceTest.java | 850 RemoteInput remoteInput = new RemoteInput.Builder("reply_key").setLabel("reply").build(); in getMessageStyleNotifBuilder() local 855 inputIntent).addRemoteInput(remoteInput) in getMessageStyleNotifBuilder() 7997 RemoteInput remoteInput = new RemoteInput.Builder("reply_key").setLabel("reply").build(); in testImmutableDirectReplyContextualActionIntent() local 8002 inputIntent).addRemoteInput(remoteInput) in testImmutableDirectReplyContextualActionIntent() 8028 RemoteInput remoteInput = new RemoteInput.Builder("reply_key").setLabel("reply").build(); in testMutableDirectReplyContextualActionIntent() local 8033 inputIntent).addRemoteInput(remoteInput) in testMutableDirectReplyContextualActionIntent()
|
/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 | 390 final boolean remoteInput = Settings.Secure.getIntForUser(mContext.getContentResolver(), in updateLockscreenNotificationSetting() 397 setLockscreenAllowRemoteInput(remoteInput && remoteInputDpm); in updateLockscreenNotificationSetting()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationContentView.java | 302 private int getExtraRemoteInputHeight(RemoteInputView remoteInput) { in getExtraRemoteInputHeight() argument 303 if (remoteInput != null && (remoteInput.isActive() || remoteInput.isSending())) { in getExtraRemoteInputHeight() 1397 smartReplies.remoteInput.getEditChoicesBeforeSending()); in applySmartReplyView()
|