Home
last modified time | relevance | path

Searched refs:HeadsUpRowKey (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/domain/interactor/
DHeadsUpNotificationInteractor.kt27 import com.android.systemui.statusbar.notification.shared.HeadsUpRowKey in <lambda>()
46 val topHeadsUpRow: Flow<HeadsUpRowKey?> = headsUpRepository.topHeadsUpRow in <lambda>()
49 val pinnedHeadsUpRows: Flow<Set<HeadsUpRowKey>> = in <lambda>()
102 fun headsUpRow(key: HeadsUpRowKey): HeadsUpRowInteractor = in <lambda>()
104 fun elementKeyFor(key: HeadsUpRowKey) = (key as HeadsUpRowRepository).elementKey in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/data/repository/
DHeadsUpRowRepository.kt19 import com.android.systemui.statusbar.notification.shared.HeadsUpRowKey
23 interface HeadsUpRowRepository : HeadsUpRowKey {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ui/viewbinder/
DHeadsUpNotificationViewBinder.kt20 import com.android.systemui.statusbar.notification.shared.HeadsUpRowKey in <lambda>()
37 var previousKeys = emptySet<HeadsUpRowKey>() in <lambda>()
73 private fun obtainView(key: HeadsUpRowKey): ExpandableNotificationRow { in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ui/viewmodel/
DNotificationListViewModel.kt28 import com.android.systemui.statusbar.notification.shared.HeadsUpRowKey in <lambda>()
258 val topHeadsUpRow: Flow<HeadsUpRowKey?> by lazy { in <lambda>()
266 val pinnedHeadsUpRows: Flow<Set<HeadsUpRowKey>> by lazy { in <lambda>()
297 fun headsUpRow(key: HeadsUpRowKey): HeadsUpRowViewModel = in <lambda>()
300 fun elementKeyFor(key: HeadsUpRowKey): Any = headsUpNotificationInteractor.elementKeyFor(key) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/shared/
DHeadsUpRowKey.kt24 interface HeadsUpRowKey interface