Home
last modified time | relevance | path

Searched refs:isStyle (Results 1 – 13 of 13) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DColorizedFgsCoordinator.java78 && notification.isStyle(Notification.CallStyle.class);
/aosp14/frameworks/base/core/java/com/android/internal/util/
H A DNotificationMessagingUtil.java96 return sbn.getNotification().isStyle(Notification.MessagingStyle.class); in hasMessagingStyle()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/provider/
H A DHighPriorityProvider.java157 return entry.getSbn().getNotification().isStyle(Notification.MessagingStyle.class); in isMessagingStyle()
/aosp14/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationComparator.java206 return record.getNotification().isStyle(Notification.CallStyle.class); in isCallStyle()
H A DNotificationRecord.java1508 notification.isStyle(Notification.DecoratedCustomViewStyle.class) in hasUndecoratedRemoteView()
1509 || notification.isStyle(Notification.DecoratedMediaCustomViewStyle.class); in hasUndecoratedRemoteView()
1549 if (!notification.isStyle(Notification.MessagingStyle.class)) { in isConversation()
1560 && notification.isStyle(Notification.MessagingStyle.class) in isConversation()
H A DNotificationManagerService.java7044 if (notification.isStyle(Notification.CallStyle.class)) {
7054 if (notification.isStyle(Notification.MediaStyle.class)
7055 || notification.isStyle(Notification.DecoratedMediaCustomViewStyle.class)) {
7093 || notification.isStyle(Notification.CallStyle.class)
7369 if (n.isStyle(Notification.CallStyle.class)) {
7414 if (n.isStyle(Notification.CallStyle.class)) {
7944 && notification.isStyle(Notification.CallStyle.class);
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/people/
H A DNotificationHelper.java201 if (notification.isStyle(Notification.MessagingStyle.class) in getMessagingStyleMessages()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ongoingcall/
H A DOngoingCallController.kt397 return entry.sbn.notification.isStyle(Notification.CallStyle::class.java)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/
H A DNotificationViewWrapper.java76 if (row.getEntry().getSbn().getNotification().isStyle( in wrap()
H A DNotificationTemplateViewWrapper.java189 && n.isStyle(Notification.BigPictureStyle.class)) { in getRightIcon()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DHeadsUpManager.java437 boolean isIncomingCall = n.isStyle(Notification.CallStyle.class) && n.extras.getInt( in isCriticalCallNotif()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DNotificationInfo.java234 mIsSystemRegisteredCall = mSbn.getNotification().isStyle(Notification.CallStyle.class) in bindNotification()
/aosp14/frameworks/base/core/java/android/app/
H A DNotification.java7007 public boolean isStyle(@NonNull Class<? extends Style> styleClass) { in isStyle() method in Notification.Builder
7099 if (isStyle(MessagingStyle.class) && extras != null) { in hasImage()