Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationSectionsManager.kt131 private sealed class SectionBounds { in <lambda>() class in com.android.systemui.statusbar.notification.stack.NotificationSectionsManager
133 data class Many(val first: ExpandableView, val last: ExpandableView) : SectionBounds() in <lambda>()
135 data class One(val lone: ExpandableView) : SectionBounds() in <lambda>()
136 object None : SectionBounds() in <lambda>()
138 fun addNotif(notif: ExpandableView): SectionBounds = in <lambda>()
182 SectionBounds.None, in <lambda>()
184 operation = SectionBounds::addNotif in <lambda>()
194 val bounds = sectionBounds[section.bucket] ?: SectionBounds.None in <lambda>()