Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/legacy/
DLegacyNotificationRanker.kt31 fun isNotificationForCurrentProfiles( method
DLegacyNotificationRankerStub.java63 public boolean isNotificationForCurrentProfiles(@NonNull NotificationEntry entry) { in isNotificationForCurrentProfiles() method in LegacyNotificationRankerStub
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DNotificationEntryManagerTest.java329 when(mEnvironment.isNotificationForCurrentProfiles(any())).thenReturn(true); in testUpdateNotificationRanking()
345 when(mEnvironment.isNotificationForCurrentProfiles(any())).thenReturn(true); in testUpdateNotificationRanking_noChange()
358 when(mEnvironment.isNotificationForCurrentProfiles(any())).thenReturn(true); in testUpdateNotificationRanking_rowNotInflatedYet()
372 when(mEnvironment.isNotificationForCurrentProfiles(any())).thenReturn(true); in testUpdateNotificationRanking_pendingNotification()
610 when(mEnvironment.isNotificationForCurrentProfiles(mEntry.getSbn())).thenReturn(false); in testGetNotificationsForCurrentUser_shouldFilterNonCurrentUserNotifications()
611 when(mEnvironment.isNotificationForCurrentProfiles(e2.getSbn())).thenReturn(true); in testGetNotificationsForCurrentUser_shouldFilterNonCurrentUserNotifications()
DNotificationFilterTest.java127 when(mEnvironment.isNotificationForCurrentProfiles(any())).thenReturn(true); in setUp()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DKeyguardEnvironmentImpl.java51 public boolean isNotificationForCurrentProfiles(StatusBarNotification n) { in isNotificationForCurrentProfiles() method in KeyguardEnvironmentImpl
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DNotificationRankingManager.kt136 override fun isNotificationForCurrentProfiles( in <lambda>() method in com.android.systemui.statusbar.notification.collection.NotificationRankingManager
139 return keyguardEnvironment.isNotificationForCurrentProfiles(entry.sbn) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationFilter.java77 if (!mKeyguardEnvironment.isNotificationForCurrentProfiles(sbn)) { in shouldFilterOut()
DNotificationEntryManager.java858 if (!mRanker.isNotificationForCurrentProfiles(entry)) { in getActiveNotificationsForCurrentUser()
977 boolean isNotificationForCurrentProfiles(StatusBarNotification sbn); in isNotificationForCurrentProfiles() method