Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/render/
DNodeSpecBuilder.kt23 import com.android.systemui.statusbar.notification.collection.listbuilder.NotifSection in <lambda>()
44 private var lastSections = setOf<NotifSection?>() in <lambda>()
58 var currentSection: NotifSection? = null in <lambda>()
59 val prevSections = mutableSetOf<NotifSection?>() in <lambda>()
61 val sectionOrder = mutableListOf<NotifSection?>() in <lambda>()
62 val sectionHeaders = mutableMapOf<NotifSection?, NodeController?>() in <lambda>()
63 val sectionCounts = mutableMapOf<NotifSection?, Int>() in <lambda>()
DNodeSpecBuilderLogger.kt23 import com.android.systemui.statusbar.notification.collection.listbuilder.NotifSection
34 oldSections: Set<NotifSection?>, in logBuildNodeSpec()
35 newHeaders: Map<NotifSection?, NodeController?>, in logBuildNodeSpec()
36 newCounts: Map<NotifSection?, Int>, in logBuildNodeSpec()
37 newSectionOrder: List<NotifSection?> in logBuildNodeSpec()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/provider/
DSectionStyleProvider.kt22 import com.android.systemui.statusbar.notification.collection.listbuilder.NotifSection
48 fun isMinimizedSection(section: NotifSection): Boolean { in isMinimizedSection()
72 fun isSilentSection(section: NotifSection): Boolean { in isSilentSection()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/statusbar/notification/collection/
DGroupEntryBuilder.java21 import com.android.systemui.statusbar.notification.collection.listbuilder.NotifSection;
33 private NotifSection mNotifSection;
74 public GroupEntryBuilder setSection(@Nullable NotifSection section) { in setSection()
DNotificationEntryBuilder.java35 import com.android.systemui.statusbar.notification.collection.listbuilder.NotifSection;
60 private NotifSection mNotifSection;
146 public NotificationEntryBuilder setSection(@Nullable NotifSection section) { in setSection()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DSuppressedAttachState.kt19 import com.android.systemui.statusbar.notification.collection.listbuilder.NotifSection
30 var section: NotifSection?,
DListEntry.java24 import com.android.systemui.statusbar.notification.collection.listbuilder.NotifSection;
79 @Nullable public NotifSection getSection() { in getSection()
DListAttachState.kt19 import com.android.systemui.statusbar.notification.collection.listbuilder.NotifSection
37 var section: NotifSection?,
DShadeListBuilder.java51 import com.android.systemui.statusbar.notification.collection.listbuilder.NotifSection;
122 private final List<NotifSection> mNotifSections = new ArrayList<>();
249 final NotifSection section = new NotifSection(sectioner, mNotifSections.size()); in setSectioners()
258 mNotifSections.add(new NotifSection(DEFAULT_SECTIONER, mNotifSections.size())); in setSectioners()
265 for (NotifSection section : mNotifSections) { in setSectioners()
494 for (NotifSection section : mNotifSections) { in notifySectionEntriesUpdated()
983 NotifSection section = applySections(entry); in assignSections()
1061 NotifSection currentSection = requireNonNull(notifList.get(0).getSection()); in assignIndexes()
1065 NotifSection section = requireNonNull(entry.getSection()); in assignIndexes()
1192 final NotifSection notifSection = mNotifSections.get(i); in cleanupPluggables()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
DRowAppearanceCoordinatorTest.kt27 import com.android.systemui.statusbar.notification.collection.listbuilder.NotifSection
58 @Mock private lateinit var section1: NotifSection
59 @Mock private lateinit var section2: NotifSection
DDataStoreCoordinatorTest.kt27 import com.android.systemui.statusbar.notification.collection.listbuilder.NotifSection
53 @Mock private lateinit var section: NotifSection
DStackCoordinatorTest.kt29 import com.android.systemui.statusbar.notification.collection.listbuilder.NotifSection
70 @Mock private lateinit var section: NotifSection
DPreparationCoordinatorTest.java62 import com.android.systemui.statusbar.notification.collection.listbuilder.NotifSection;
107 @Mock private NotifSection mNotifSection;
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/
DSectionStyleProviderTest.kt26 import com.android.systemui.statusbar.notification.collection.listbuilder.NotifSection
118 override fun getSection(): NotifSection? = NotifSection(inputSectioner, 1) in fakeNotification()
DShadeListBuilderTest.java63 import com.android.systemui.statusbar.notification.collection.listbuilder.NotifSection;
753 final NotifSection pkg1Section = new NotifSection(pkg1Sectioner, 0); in testNotifSections()
754 final NotifSection pkg2Section = new NotifSection(pkg2Sectioner, 1); in testNotifSections()
755 final NotifSection pkg5Section = new NotifSection(pkg5Sectioner, 3); in testNotifSections()
2358 NotifSection section = new NotifSection(mock(NotifSectioner.class), 0); in assertOrder()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/render/
DNodeSpecBuilderTest.kt29 import com.android.systemui.statusbar.notification.collection.listbuilder.NotifSection
327 private fun notif(id: Int, section: NotifSection? = null): NotificationEntry { in notif()
340 section: NotifSection, in group()
406 ): NotifSection { in buildSection()
407 return NotifSection(object : NotifSectioner("Section $index (bucket=$bucket)", bucket) { in buildSection()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/listbuilder/
DNotifSection.kt26 data class NotifSection( dataClass
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/collection/coordinator/
DConversationCoordinatorTest.kt36 import com.android.systemui.statusbar.notification.collection.listbuilder.NotifSection
79 private lateinit var peopleAlertingSection: NotifSection
113 peopleAlertingSection = NotifSection(peopleAlertingSectioner, 0) in setUp()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/inflation/
DNotifUiAdjustmentProviderTest.kt32 import com.android.systemui.statusbar.notification.collection.listbuilder.NotifSection
71 private val section = NotifSection(mock(), 0)