Searched refs:mNotificationBuilder (Results 1 – 6 of 6) sorted by relevance
/packages/apps/Gallery2/src/com/android/gallery3d/ingest/ |
D | IngestService.java | 79 private NotificationCompat.Builder mNotificationBuilder; field in IngestService 88 mNotificationBuilder = new NotificationCompat.Builder(this); in onCreate() 90 mNotificationBuilder.setSmallIcon(android.R.drawable.stat_notify_sync) in onCreate() 133 mNotificationBuilder.setContentTitle(mDevicePrettyName); in setDevice() 157 mNotificationBuilder.setProgress(0, 0, false) in setClientActivity() 160 mNotificationBuilder.build()); in setClientActivity() 197 mNotificationBuilder.setProgress(0, 0, true) in importSelectedItems() 200 mNotificationBuilder.build()); in importSelectedItems() 232 mNotificationBuilder.setProgress(totalCount, visitedCount, false) in onImportProgress() 235 mNotificationBuilder.build()); in onImportProgress() [all …]
|
/packages/apps/Camera2/src/com/android/camera/processing/ |
D | ProcessingService.java | 77 private Notification.Builder mNotificationBuilder; field in ProcessingService 116 mNotificationBuilder = createInProgressNotificationBuilder(); in onCreate() 140 startForeground(CAMERA_NOTIFICATION_ID, mNotificationBuilder.build()); in onStartCommand() 243 mNotificationBuilder.setContentText("…").setProgress(100, 0, false); in resetNotification() 255 mNotificationManager.notify(CAMERA_NOTIFICATION_ID, mNotificationBuilder.build()); in postNotification() 271 mNotificationBuilder.setProgress(100, progress, false); in onProgressChanged() 277 mNotificationBuilder.setContentText(messageId > 0 ? getString(messageId) : ""); in onStatusMessageChanged()
|
/packages/apps/DeskClock/src/com/android/deskclock/data/ |
D | TimerModel.java | 99 private final TimerNotificationBuilder mNotificationBuilder = new TimerNotificationBuilder(); field in TimerModel 752 mNotificationBuilder.build(mContext, mNotificationModel, unexpired); in updateNotification() 776 final Notification notification = mNotificationBuilder.buildMissed(mContext, in updateMissedNotification() 802 final Notification notification = mNotificationBuilder.buildHeadsUp(mContext, expired); in updateHeadsUpNotification()
|
D | StopwatchModel.java | 55 private final StopwatchNotificationBuilder mNotificationBuilder = field in StopwatchModel 234 mNotificationBuilder.build(mContext, mNotificationModel, stopwatch); in updateNotification()
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/ |
D | BugleNotifications.java | 466 state.mNotificationBuilder = notifBuilder; in processAndSend() 697 notificationState.mNotificationBuilder in sendNotification() 706 notificationState.mNotificationBuilder.setLargeIcon(avatarIcon); in sendNotification() 712 notificationState.mNotificationBuilder.addPerson(contactUri.toString()); in sendNotification() 784 final NotificationCompat.Builder notifBuilder = notificationState.mNotificationBuilder; in fireOffNotification() 817 notificationState.mNotificationBuilder.setLargeIcon(smallBitmap); in fireOffNotification()
|
D | NotificationState.java | 64 public NotificationCompat.Builder mNotificationBuilder; field in NotificationState
|