Home
last modified time | relevance | path

Searched refs:CATEGORY_CALL (Results 1 – 10 of 10) sorted by relevance

/packages/modules/ExtServices/src/android/ext/services/notification/
DNotificationCategorizer.java48 protected static final int CATEGORY_CALL = 6; field in NotificationCategorizer
53 CATEGORY_MIN, CATEGORY_EVERYTHING_ELSE, CATEGORY_ONGOING, CATEGORY_CALL,
87 if (entry.isCategory(Notification.CATEGORY_CALL)) { in getCategory()
88 return CATEGORY_CALL; in getCategory()
/packages/modules/ExtServices/tests/src/android/ext/services/notification/
DNotificationCategorizerTest.java134 when(mEntry.isCategory(Notification.CATEGORY_CALL)).thenReturn(true); in testCallCategory()
136 assertEquals(NotificationCategorizer.CATEGORY_CALL, nc.getCategory(mEntry)); in testCallCategory()
137 assertFalse(nc.shouldSilence(NotificationCategorizer.CATEGORY_CALL)); in testCallCategory()
139 when(mEntry.isCategory(Notification.CATEGORY_CALL)).thenReturn(false); in testCallCategory()
/packages/apps/Car/Notification/src/com/android/car/notification/
DCarHeadsUpNotificationManager.java543 Notification.CATEGORY_CALL) && statusBarNotification.isOngoing(); in shouldDismissOnSwipe()
659 case Notification.CATEGORY_CALL: in getNotificationViewType()
749 if (Notification.CATEGORY_CALL.equals(notification.category) in shouldShowHeadsUp()
DPreprocessingManager.java281 if (Notification.CATEGORY_CALL.equals(notification.category)) { in group()
DCarNotificationViewAdapter.java322 case Notification.CATEGORY_CALL: in getItemViewType()
/packages/apps/Car/Notification/tests/robotests/src/com/android/car/notification/
DCarHeadsUpNotificationManagerTest.java126 .setCategory(Notification.CATEGORY_CALL) in setupBaseActivityAndLayout()
150 .setCategory(Notification.CATEGORY_CALL) in setupBaseActivityAndLayout()
/packages/apps/Car/Dialer/src/com/android/car/dialer/notification/
DInCallNotificationController.java115 .setCategory(Notification.CATEGORY_CALL) in showInCallNotification()
/packages/services/Telecomm/src/com/android/server/telecom/ui/
DIncomingCallNotifier.java262 builder.setCategory(Notification.CATEGORY_CALL); in getNotificationBuilder()
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/notification/
DNotificationFragment.java508 .setCategory(Notification.CATEGORY_CALL) in initCallButton()
/packages/apps/Dialer/java/com/android/incallui/
DStatusBarNotifier.java361 builder.setCategory(Notification.CATEGORY_CALL); in buildAndSendNotification()