Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/tests/coretests/src/android/app/
H A DNotificationTest.java1480 Pair<RemoteInput, Notification.Action> remoteInputActionPair = in testFreeformRemoteInputActionPair_hasRemoteInput() local
1483 assertNotNull(remoteInputActionPair); in testFreeformRemoteInputActionPair_hasRemoteInput()
1484 Assert.assertEquals(remoteInput, remoteInputActionPair.first); in testFreeformRemoteInputActionPair_hasRemoteInput()
1485 Assert.assertEquals(actionWithRemoteInput, remoteInputActionPair.second); in testFreeformRemoteInputActionPair_hasRemoteInput()
1530 Pair<RemoteInput, Notification.Action> remoteInputActionPair = in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput() local
1533 assertNotNull(remoteInputActionPair); in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput()
1534 Assert.assertEquals(freeformRemoteInput, remoteInputActionPair.first); in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput()
1535 Assert.assertEquals(actionWithFreeformRemoteInput, remoteInputActionPair.second); in testFreeformRemoteInputActionPair_requestFreeform_hasFreeformRemoteInput()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DSmartReplyStateInflater.kt190 val remoteInputActionPair = notification.findRemoteInputActionPair(false /* freeform */) regex
208 enableAppGeneratedSmartReplies -> remoteInputActionPair?.let { pair ->
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
H A DInflatedSmartRepliesTest.java583 Pair<RemoteInput, Notification.Action> remoteInputActionPair = in setupAppGeneratedReplies() local
585 when(mNotification.findRemoteInputActionPair(false)).thenReturn(remoteInputActionPair); in setupAppGeneratedReplies()