/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 | 1685 public Builder addRemoteInput(RemoteInput remoteInput) { in addRemoteInput() argument 1689 mRemoteInputs.add(remoteInput); in addRemoteInput() 3297 for (RemoteInput remoteInput : action.getRemoteInputs()) { in findRemoteInputActionPair() 3298 if (remoteInput.getAllowFreeFormInput() || !requiresFreeform) { in findRemoteInputActionPair() 3299 resultRemoteInput = remoteInput; in findRemoteInputActionPair() 9963 UnreadConversation(String[] messages, RemoteInput remoteInput, in UnreadConversation() argument 9967 mRemoteInput = remoteInput; in UnreadConversation() 10080 RemoteInput remoteInput = b.getParcelable(KEY_REMOTE_INPUT); in getUnreadConversationFromBundle() local 10088 remoteInput, in getUnreadConversationFromBundle() 10140 PendingIntent pendingIntent, RemoteInput remoteInput) { in setReplyAction() argument [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | SmartReplyView.java | 222 if (smartReplies.remoteInput != null && smartReplies.pendingIntent != null) { in inflateRepliesFromRemoteInput() 276 smartReplies.remoteInput.getEditChoicesBeforeSending())) { in inflateReplyButton() 280 new RemoteInput[] { smartReplies.remoteInput }, smartReplies.remoteInput, in inflateReplyButton() 289 results.putString(smartReplies.remoteInput.getResultKey(), choice.toString()); in inflateReplyButton() 291 RemoteInput.addResultsToIntent(new RemoteInput[] { smartReplies.remoteInput }, intent, in inflateReplyButton() 948 public final RemoteInput remoteInput; field in SmartReplyView.SmartReplies 955 public SmartReplies(CharSequence[] choices, RemoteInput remoteInput, in SmartReplies() argument 958 this.remoteInput = remoteInput; in SmartReplies()
|
D | RemoteInputView.java | 287 public void setRemoteInput(RemoteInput[] remoteInputs, RemoteInput remoteInput, in setRemoteInput() argument 290 mRemoteInput = remoteInput; in setRemoteInput()
|
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | NotificationTest.java | 561 RemoteInput remoteInput = new RemoteInput.Builder("a").build(); in testFreeformRemoteInputActionPair_hasRemoteInput() local 565 .addRemoteInput(remoteInput) in testFreeformRemoteInputActionPair_hasRemoteInput() 566 .addRemoteInput(remoteInput) in testFreeformRemoteInputActionPair_hasRemoteInput() 582 assertEquals(remoteInput, remoteInputActionPair.first); in testFreeformRemoteInputActionPair_hasRemoteInput() 605 RemoteInput remoteInput = in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput() local 612 .addRemoteInput(remoteInput) in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput() 618 .addRemoteInput(remoteInput) in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput()
|
D | NotificationManagerServiceTest.java | 4534 RemoteInput remoteInput = new RemoteInput.Builder("reply_key").setLabel("reply").build(); in testFlagBubbleNotifs_flag_messaging() local 4538 inputIntent).addRemoteInput(remoteInput) in testFlagBubbleNotifs_flag_messaging() 5180 RemoteInput remoteInput = new RemoteInput.Builder("reply_key").setLabel("reply").build(); in testNotificationBubbles_flagAutoExpandForeground_fails_notForeground() local 5184 inputIntent).addRemoteInput(remoteInput) in testNotificationBubbles_flagAutoExpandForeground_fails_notForeground() 5237 RemoteInput remoteInput = new RemoteInput.Builder("reply_key").setLabel("reply").build(); in testNotificationBubbles_flagAutoExpandForeground_succeeds_foreground() local 5241 inputIntent).addRemoteInput(remoteInput) in testNotificationBubbles_flagAutoExpandForeground_succeeds_foreground()
|
/frameworks/base/core/java/android/app/slice/ |
D | Slice.java | 481 public Slice.Builder addRemoteInput(RemoteInput remoteInput, in addRemoteInput() argument 484 Preconditions.checkNotNull(remoteInput); in addRemoteInput() 485 mItems.add(new SliceItem(remoteInput, SliceItem.FORMAT_REMOTE_INPUT, in addRemoteInput()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | NotificationLockscreenUserManagerImpl.java | 351 final boolean remoteInput = Settings.Secure.getIntForUser(mContext.getContentResolver(), in updateLockscreenNotificationSetting() 358 setLockscreenAllowRemoteInput(remoteInput && remoteInputDpm); in updateLockscreenNotificationSetting()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationContentView.java | 294 private int getExtraRemoteInputHeight(RemoteInputView remoteInput) { in getExtraRemoteInputHeight() argument 295 if (remoteInput != null && (remoteInput.isActive() || remoteInput.isSending())) { in getExtraRemoteInputHeight() 1306 smartRepliesAndActions.smartReplies.remoteInput
|