Home
last modified time | relevance | path

Searched refs:activeNotifList (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/
DNotifLiveDataStoreImplTest.kt52 assertThat(liveDataStoreImpl.activeNotifList.value).isEqualTo(listOf(entry1, entry2)) in <lambda>()
58 liveDataStoreImpl.activeNotifList.addSyncObserver(observer) in <lambda>()
59 liveDataStoreImpl.activeNotifList.addAsyncObserver(observer) in <lambda>()
73 assertThat(liveDataStoreImpl.activeNotifList.value).isEqualTo(listOf(entry1, entry2)) in <lambda>()
79 liveDataStoreImpl.activeNotifList.addSyncObserver(observer) in <lambda>()
80 liveDataStoreImpl.activeNotifList.addAsyncObserver(observer) in <lambda>()
94 val current = liveDataStoreImpl.activeNotifList.value as MutableList<NotificationEntry> in <lambda>()
98 assertThat(liveDataStoreImpl.activeNotifList.value).isEqualTo(listOf(entry1, entry2)) in <lambda>()
100 liveDataStoreImpl.activeNotifList.addSyncObserver(observer) in <lambda>()
101 liveDataStoreImpl.activeNotifList.addAsyncObserver(observer) in <lambda>()
DNotifLiveDataStoreMocks.kt27 whenever(dataStoreImpl.activeNotifList).thenReturn(mock()) in createNotifLiveDataStoreImplMock()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DNotifLiveDataStore.kt33 val activeNotifList: NotifLiveData<List<NotificationEntry>> constant
DNotifLiveDataStoreImpl.kt53 override val activeNotifList: NotifLiveData<List<NotificationEntry>> = activeNotifListPrivate in <lambda>() constant in com.android.systemui.statusbar.notification.collection.NotifLiveDataStoreImpl