Home
last modified time | relevance | path

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

/frameworks/base/core/tests/coretests/src/android/app/
DNotificationTest.java1641 Pair<RemoteInput, Notification.Action> remoteInputActionPair = in testFreeformRemoteInputActionPair_hasRemoteInput() local
1644 assertNotNull(remoteInputActionPair); in testFreeformRemoteInputActionPair_hasRemoteInput()
1645 Assert.assertEquals(remoteInput, remoteInputActionPair.first); in testFreeformRemoteInputActionPair_hasRemoteInput()
1646 Assert.assertEquals(actionWithRemoteInput, remoteInputActionPair.second); in testFreeformRemoteInputActionPair_hasRemoteInput()
1691 Pair<RemoteInput, Notification.Action> remoteInputActionPair = in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput() local
1694 assertNotNull(remoteInputActionPair); in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput()
1695 Assert.assertEquals(freeformRemoteInput, remoteInputActionPair.first); in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput()
1696 Assert.assertEquals(actionWithFreeformRemoteInput, remoteInputActionPair.second); in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DSmartReplyStateInflater.kt190 val remoteInputActionPair = notification.findRemoteInputActionPair(false /* freeform */) in inflateSmartReplyState() constant
208 enableAppGeneratedSmartReplies -> remoteInputActionPair?.let { pair -> in inflateSmartReplyState()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DInflatedSmartRepliesTest.java583 Pair<RemoteInput, Notification.Action> remoteInputActionPair = in setupAppGeneratedReplies() local
585 when(mNotification.findRemoteInputActionPair(false)).thenReturn(remoteInputActionPair); in setupAppGeneratedReplies()