Home
last modified time | relevance | path

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

/aosp12/packages/apps/Car/Notification/tests/unit/src/com/android/car/notification/
H A DCarNotificationDiffTest.java177 assertThat(CarNotificationDiff.sameGroupUniqueIdentifiers(mNotificationGroup1, in sameGroupUniqueIdentifiers_shouldReturnTrue()
187 assertThat(CarNotificationDiff.sameGroupUniqueIdentifiers(notificationGroup, in sameGroupUniqueIdentifiers_differentIsSeen_shouldReturnFalse()
193 assertThat(CarNotificationDiff.sameGroupUniqueIdentifiers(mNotificationGroup1, in sameGroupUniqueIdentifiers_differentKeys_shouldReturnFalse()
210 assertThat(CarNotificationDiff.sameGroupUniqueIdentifiers(mNotificationGroup1, in sameGroupUniqueIdentifiers_diffNotificationKey_shouldReturnFalse()
226 assertThat(CarNotificationDiff.sameGroupUniqueIdentifiers(mNotificationGroup1, in sameGroupUniqueIdentifiers_sameChildrenNotification_shouldReturnTrue()
235 assertThat(CarNotificationDiff.sameGroupUniqueIdentifiers(mNotificationGroup1, in differentGroupUniqueIdentifiers_shouldReturnFalse()
/aosp12/packages/apps/Car/Notification/src/com/android/car/notification/
H A DCarNotificationDiff.java82 return sameGroupUniqueIdentifiers(oldItem, newItem, mShowRecentsAndOlderHeaders); in areItemsTheSame()
99 static boolean sameGroupUniqueIdentifiers(NotificationGroup oldItem, in sameGroupUniqueIdentifiers() method in CarNotificationDiff