/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | RankingCoordinator.java | 28 import com.android.systemui.statusbar.notification.collection.listbuilder.pluggable.NotifSectioner; 80 public NotifSectioner getAlertingSectioner() { in getAlertingSectioner() 84 public NotifSectioner getSilentSectioner() { in getSilentSectioner() 88 public NotifSectioner getMinimizedSectioner() { in getMinimizedSectioner() 92 private final NotifSectioner mAlertingNotifSectioner = new NotifSectioner("Alerting", 110 private final NotifSectioner mSilentNotifSectioner = new NotifSectioner("Silent", 139 private final NotifSectioner mMinimizedNotifSectioner = new NotifSectioner("Minimized",
|
D | ColorizedFgsCoordinator.java | 27 import com.android.systemui.statusbar.notification.collection.listbuilder.pluggable.NotifSectioner; 49 public NotifSectioner getSectioner() { in getSectioner() 57 private final NotifSectioner mNotifSectioner = new NotifSectioner("ColorizedSectioner",
|
D | ConversationCoordinator.kt | 27 import com.android.systemui.statusbar.notification.collection.listbuilder.pluggable.NotifSectioner in <lambda>() 87 object : NotifSectioner("Priority People", BUCKET_PRIORITY_PEOPLE) { in <lambda>() 94 val peopleAlertingSectioner = object : NotifSectioner("People(alerting)", BUCKET_PEOPLE) { in <lambda>() 111 val peopleSilentSectioner = object : NotifSectioner("People(silent)", BUCKET_PEOPLE) { in <lambda>()
|
D | NotifCoordinators.kt | 25 import com.android.systemui.statusbar.notification.collection.listbuilder.pluggable.NotifSectioner 76 private val mOrderedSections: MutableList<NotifSectioner> = ArrayList()
|
D | KeyguardCoordinator.kt | 42 import com.android.systemui.statusbar.notification.collection.listbuilder.pluggable.NotifSectioner in <lambda>() 396 object : NotifSectioner("TopOngoing", BUCKET_TOP_ONGOING) { in <lambda>() 406 object : NotifSectioner("TopUnseen", BUCKET_TOP_UNSEEN) { in <lambda>()
|
D | HeadsUpCoordinator.kt | 33 import com.android.systemui.statusbar.notification.collection.listbuilder.pluggable.NotifSectioner in <lambda>() 690 val sectioner = object : NotifSectioner("HeadsUp", BUCKET_HEADS_UP) { in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/provider/ |
D | SectionStyleProvider.kt | 23 import com.android.systemui.statusbar.notification.collection.listbuilder.pluggable.NotifSectioner 34 private lateinit var silentSections: Set<NotifSectioner> 35 private lateinit var lowPrioritySections: Set<NotifSectioner> 41 fun setMinimizedSections(sections: Collection<NotifSectioner>) { in setMinimizedSections() 65 fun setSilentSections(sections: Collection<NotifSectioner>) { in setSilentSections()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/listbuilder/pluggable/ |
D | NotifSectioner.java | 32 public abstract class NotifSectioner extends Pluggable<NotifSectioner> { class 36 protected NotifSectioner(String name, @PriorityBucket int bucket) { in NotifSectioner() method in NotifSectioner
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/ |
D | SectionStyleProviderTest.kt | 27 import com.android.systemui.statusbar.notification.collection.listbuilder.pluggable.NotifSectioner 57 @Mock private lateinit var peopleMixedSectioner : NotifSectioner 58 @Mock private lateinit var allSilentSectioner : NotifSectioner 59 @Mock private lateinit var allAlertingSectioner : NotifSectioner 105 private fun fakeNotification(inputSectioner: NotifSectioner): ListEntry { in fakeNotification()
|
D | ShadeListBuilderTest.java | 73 import com.android.systemui.statusbar.notification.collection.listbuilder.pluggable.NotifSectioner; 693 final NotifSectioner pkg1Sectioner = spy(new PackageSectioner(PACKAGE_1) { in testNotifSectionsChildrenUpdated() 700 final NotifSectioner pkg2Sectioner = spy(new PackageSectioner(PACKAGE_2) { in testNotifSectionsChildrenUpdated() 707 final NotifSectioner pkg3Sectioner = spy(new PackageSectioner(PACKAGE_3) { in testNotifSectionsChildrenUpdated() 744 final NotifSectioner pkg1Sectioner = spy(new PackageSectioner(PACKAGE_1)); in testNotifSections() 745 final NotifSectioner pkg2Sectioner = spy(new PackageSectioner(PACKAGE_2)); in testNotifSections() 748 final NotifSectioner pkg4Sectioner = spy(new PackageSectioner(PACKAGE_4)); in testNotifSections() 749 final NotifSectioner pkg5Sectioner = spy(new PackageSectioner(PACKAGE_5)); in testNotifSections() 841 final NotifSectioner pkg2Section = spy(new PackageSectioner(PACKAGE_2)); in testNotifUsesDefaultSection() 891 NotifSectioner sectioner = new PackageSectioner( in testThatSectionComparatorsAreCalled() [all …]
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | RankingCoordinatorTest.java | 52 import com.android.systemui.statusbar.notification.collection.listbuilder.pluggable.NotifSectioner; 90 private NotifSectioner mAlertingSectioner; 91 private NotifSectioner mSilentSectioner; 92 private NotifSectioner mMinimizedSectioner; 93 private ArrayList<NotifSectioner> mSections = new ArrayList<>(3); 304 private void assertInSection(NotificationEntry entry, NotifSectioner section) { in assertInSection() 305 for (NotifSectioner current: mSections) { in assertInSection()
|
D | ColorizedFgsCoordinatorTest.java | 41 import com.android.systemui.statusbar.notification.collection.listbuilder.pluggable.NotifSectioner; 59 private NotifSectioner mFgsSection;
|
D | PreparationCoordinatorTest.java | 65 import com.android.systemui.statusbar.notification.collection.listbuilder.pluggable.NotifSectioner; 106 @Mock private NotifSectioner mNotifSectioner;
|
D | HeadsUpCoordinatorTest.kt | 34 import com.android.systemui.statusbar.notification.collection.listbuilder.pluggable.NotifSectioner in <lambda>() 85 private lateinit var notifSectioner: NotifSectioner in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/listbuilder/ |
D | NotifSection.kt | 22 import com.android.systemui.statusbar.notification.collection.listbuilder.pluggable.NotifSectioner 27 val sectioner: NotifSectioner,
|
D | ShadeListBuilderLogger.kt | 34 import com.android.systemui.statusbar.notification.collection.listbuilder.pluggable.NotifSectioner 111 sectioner: NotifSectioner,
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/ |
D | NotifPipeline.kt | 30 import com.android.systemui.statusbar.notification.collection.listbuilder.pluggable.NotifSectioner 167 fun setSections(sections: List<NotifSectioner>) { in setSections()
|
D | ShadeListBuilder.java | 66 import com.android.systemui.statusbar.notification.collection.listbuilder.pluggable.NotifSectioner; 243 void setSectioners(List<NotifSectioner> sectioners) { in setSectioners() 248 for (NotifSectioner sectioner : sectioners) { in setSectioners() 365 private void onNotifSectionInvalidated(NotifSectioner section, @Nullable String reason) { in onNotifSectionInvalidated() 1507 private static final NotifSectioner DEFAULT_SECTIONER = new NotifSectioner("UnknownSection",
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | ConversationCoordinatorTest.kt | 40 import com.android.systemui.statusbar.notification.collection.listbuilder.pluggable.NotifSectioner 73 private lateinit var peopleAlertingSectioner: NotifSectioner 74 private lateinit var peopleSilentSectioner: NotifSectioner
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/render/ |
D | NodeSpecBuilderTest.kt | 30 import com.android.systemui.statusbar.notification.collection.listbuilder.pluggable.NotifSectioner 407 return NotifSection(object : NotifSectioner("Section $index (bucket=$bucket)", bucket) { in buildSection()
|