Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/people/
DPeopleNotificationIdentifier.kt29 …m.android.systemui.statusbar.notification.people.PeopleNotificationIdentifier.Companion.TYPE_PERSON
54 @IntDef(prefix = ["TYPE_"], value = [TYPE_NON_PERSON, TYPE_PERSON, TYPE_FULL_PERSON, in getPeopleNotificationType()
59 const val TYPE_PERSON = 1 in getPeopleNotificationType() constant
106 conversationShortcutInfo == null -> TYPE_PERSON in upperBound()
112 if (personExtractor.isPersonNotification(sbn)) TYPE_PERSON else TYPE_NON_PERSON in extractPersonTypeInfo()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/collection/coordinator/
DConversationCoordinatorTest.kt50 …m.android.systemui.statusbar.notification.people.PeopleNotificationIdentifier.Companion.TYPE_PERSON
121 assertFalse(sectioner.isInSection(makeEntryOfPeopleType(TYPE_PERSON))) in priorityPeopleSectionerClaimsOnlyImportantConversations()
130 assertFalse(promoter.shouldPromoteToTopLevel(makeEntryOfPeopleType(TYPE_PERSON))) in testPromotesImportantConversations()
171 val alertingEntry = makeEntryOfPeopleType(TYPE_PERSON) { setImportance(IMPORTANCE_DEFAULT) } in testInAlertingPeopleSectionWhenTheImportanceIsAtLeastDefault()
181 val silentEntry = makeEntryOfPeopleType(TYPE_PERSON) { setImportance(IMPORTANCE_LOW) } in testInAlertingPeopleSectionWhenTheImportanceIsLowerThanDefault()
191 val silentEntry = makeEntryOfPeopleType(TYPE_PERSON) { setImportance(IMPORTANCE_LOW) } in testInSilentPeopleSectionWhenTheImportanceIsLowerThanDefault()
222 val summary = makeEntryOfPeopleType(TYPE_PERSON) { setId(2).setImportance(IMPORTANCE_LOW) } in testInAlertingPeopleSectionWhenThereIsAnImportantChild()
241 makeEntryOfPeopleType(TYPE_PERSON) { setSection(peopleAlertingSection).setTag("B") } in testComparatorPutsImportantPeopleFirst()
251 makeEntryOfPeopleType(TYPE_PERSON) { setSection(peopleAlertingSection).setTag("A") } in testComparatorEquatesPeopleWithSameType()
253 makeEntryOfPeopleType(TYPE_PERSON) { setSection(peopleAlertingSection).setTag("B") } in testComparatorEquatesPeopleWithSameType()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/
DHighPriorityProviderTest.java24 …static com.android.systemui.statusbar.notification.people.PeopleNotificationIdentifier.TYPE_PERSON;
93 .thenReturn(TYPE_PERSON); in peopleNotification()
111 .thenReturn(TYPE_PERSON); in highImportanceConversation()
128 .thenReturn(TYPE_PERSON); in lowImportanceConversation()
142 .thenReturn(TYPE_PERSON); in highImportanceConversationWhenAnyOfChildIsHighPriority()
206 .thenReturn(TYPE_PERSON); in userChangeTrumpsHighPriorityCharacteristics()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationMenuRow.java264 if (personNotifType == PeopleNotificationIdentifier.TYPE_PERSON) { in createMenuViews()