Home
last modified time | relevance | path

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

/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DNotificationTest.java495 Pair<RemoteInput, Notification.Action> remoteInputActionPair = in testFreeformRemoteInputActionPair_hasRemoteInput() local
498 assertNotNull(remoteInputActionPair); in testFreeformRemoteInputActionPair_hasRemoteInput()
499 assertEquals(remoteInput, remoteInputActionPair.first); in testFreeformRemoteInputActionPair_hasRemoteInput()
500 assertEquals(actionWithRemoteInput, remoteInputActionPair.second); in testFreeformRemoteInputActionPair_hasRemoteInput()
543 Pair<RemoteInput, Notification.Action> remoteInputActionPair = in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput() local
546 assertNotNull(remoteInputActionPair); in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput()
547 assertEquals(freeformRemoteInput, remoteInputActionPair.first); in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput()
548 assertEquals(actionWithFreeformRemoteInput, remoteInputActionPair.second); in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DSmartReplyStateInflater.kt176 val remoteInputActionPair = notification.findRemoteInputActionPair(false /* freeform */) in inflateSmartReplyState() constant
194 enableAppGeneratedSmartReplies -> remoteInputActionPair?.let { pair -> in inflateSmartReplyState()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DInflatedSmartRepliesTest.java582 Pair<RemoteInput, Notification.Action> remoteInputActionPair = in setupAppGeneratedReplies() local
584 when(mNotification.findRemoteInputActionPair(false)).thenReturn(remoteInputActionPair); in setupAppGeneratedReplies()