Home
last modified time | relevance | path

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

/packages/apps/Car/Notification/src/com/android/car/notification/
DCarHeadsUpNotificationManager.java295 HeadsUpEntry currentNotification = addNewHeadsUpEntry(statusBarNotification); in showHeadsUp() local
296 if (currentNotification.isNewHeadsUp) { in showHeadsUp()
299 setAutoDismissViews(currentNotification, statusBarNotification); in showHeadsUp()
300 } else if (currentNotification.isAlertAgain) { in showHeadsUp()
301 setAutoDismissViews(currentNotification, statusBarNotification); in showHeadsUp()
306 currentNotification.setClickHandlerFactory(mClickHandlerFactory); in showHeadsUp()
309 if (currentNotification.getNotificationView() == null) { in showHeadsUp()
310 currentNotification.setNotificationView(mInflater.inflate( in showHeadsUp()
313 mHeadsUpContentFrame.addView(currentNotification.getNotificationView()); in showHeadsUp()
314 currentNotification.setViewHolder( in showHeadsUp()
[all …]
/packages/apps/Dialer/java/com/android/incallui/
DStatusBarNotifier.java123 private int currentNotification = NOTIFICATION_NONE; field in StatusBarNotifier
142 currentNotification = NOTIFICATION_NONE; in StatusBarNotifier()
222 if (currentNotification != NOTIFICATION_NONE) { in cancelNotification()
224 currentNotification = NOTIFICATION_NONE; in cancelNotification()
364 if (currentNotification != NOTIFICATION_INCOMING_CALL) { in buildAndSendNotification()
435 currentNotification = notificationType; in buildAndSendNotification()
527 currentNotification != notificationType); in checkForChangeAndSaveData()
530 if (currentNotification != notificationType) { in checkForChangeAndSaveData()
531 if (currentNotification == NOTIFICATION_NONE) { in checkForChangeAndSaveData()
/packages/apps/Dialer/java/com/android/dialer/notification/
DNotificationThrottler.java86 for (StatusBarNotification currentNotification : activeNotifications) { in throttle()
87 if (isNotificationInGroup(currentNotification, groupKey)) { in throttle()
/packages/apps/Car/Notification/tests/robotests/src/com/android/car/notification/
DCarHeadsUpNotificationManagerTest.java467 private View getNotificationView(HeadsUpEntry currentNotification) { in getNotificationView() argument
468 return currentNotification == null ? null : currentNotification.getNotificationView(); in getNotificationView()