Home
last modified time | relevance | path

Searched refs:remoteInputActionPair (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DInflatedSmartReplies.java171 Pair<RemoteInput, Notification.Action> remoteInputActionPair = in chooseSmartRepliesAndActions() local
191 && remoteInputActionPair != null in chooseSmartRepliesAndActions()
192 && !ArrayUtils.isEmpty(remoteInputActionPair.first.getChoices()) in chooseSmartRepliesAndActions()
193 && remoteInputActionPair.second.actionIntent != null; in chooseSmartRepliesAndActions()
202 remoteInputActionPair.first.getChoices(), in chooseSmartRepliesAndActions()
203 remoteInputActionPair.first, in chooseSmartRepliesAndActions()
204 remoteInputActionPair.second.actionIntent, in chooseSmartRepliesAndActions()
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DNotificationTest.java578 Pair<RemoteInput, Notification.Action> remoteInputActionPair = in testFreeformRemoteInputActionPair_hasRemoteInput() local
581 assertNotNull(remoteInputActionPair); in testFreeformRemoteInputActionPair_hasRemoteInput()
582 assertEquals(remoteInput, remoteInputActionPair.first); in testFreeformRemoteInputActionPair_hasRemoteInput()
583 assertEquals(actionWithRemoteInput, remoteInputActionPair.second); in testFreeformRemoteInputActionPair_hasRemoteInput()
626 Pair<RemoteInput, Notification.Action> remoteInputActionPair = in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput() local
629 assertNotNull(remoteInputActionPair); in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput()
630 assertEquals(freeformRemoteInput, remoteInputActionPair.first); in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput()
631 assertEquals(actionWithFreeformRemoteInput, remoteInputActionPair.second); in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DInflatedSmartRepliesTest.java405 Pair<RemoteInput, Notification.Action> remoteInputActionPair = in setupAppGeneratedReplies() local
407 when(mNotification.findRemoteInputActionPair(false)).thenReturn(remoteInputActionPair); in setupAppGeneratedReplies()