Home
last modified time | relevance | path

Searched refs:notifBuilder (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Messaging/src/com/android/messaging/datamodel/
DBugleNotifications.java414 final NotificationCompat.Builder notifBuilder = new NotificationCompat.Builder(context); in processAndSend() local
415 notifBuilder.setCategory(Notification.CATEGORY_MESSAGE); in processAndSend()
440 notifBuilder.setDeleteIntent(clearIntent); in processAndSend()
443 updateBuilderAudioVibrate(state, notifBuilder, silent, ringtoneUri, conversationId); in processAndSend()
458 notifBuilder.setContentIntent(destinationIntent); in processAndSend()
461 notifBuilder.setPriority(state.getPriority()); in processAndSend()
465 final NotificationCompat.Style notifStyle = state.build(notifBuilder); in processAndSend()
466 state.mNotificationBuilder = notifBuilder; in processAndSend()
472 notifBuilder.addExtras(people); in processAndSend()
639 final NotificationCompat.Builder notifBuilder, final boolean silent, in updateBuilderAudioVibrate() argument
[all …]
DMessageNotificationState.java790 final NotificationCompat.Builder notifBuilder = new NotificationCompat.Builder(context); in buildConversationPageForWearable() local
792 new NotificationCompat.BigTextStyle(notifBuilder).bigText(bigText); in buildConversationPageForWearable()
793 notifBuilder.setStyle(notifStyle); in buildConversationPageForWearable()
797 notifBuilder.extend(wearableExtender); in buildConversationPageForWearable()
799 return notifBuilder.build(); in buildConversationPageForWearable()
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
DNotificationUtils.java820 builders.notifBuilder.extend(builders.wearableNotifBuilder); in validateNotifications()
821 nm.notify(entry.getKey(), builders.notifBuilder.build()); in validateNotifications()
2017 public final NotificationCompat.Builder notifBuilder; field in NotificationUtils.NotificationBuilders
2020 private NotificationBuilders(NotificationCompat.Builder notifBuilder, in NotificationBuilders() argument
2022 this.notifBuilder = notifBuilder; in NotificationBuilders()
2026 public static NotificationBuilders of(NotificationCompat.Builder notifBuilder, in of() argument
2028 return new NotificationBuilders(notifBuilder, wearableNotifBuilder); in of()