Home
last modified time | relevance | path

Searched refs:mNotificationBuilder (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/ingest/
DIngestService.java79 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/
DProcessingService.java77 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/
DTimerModel.java99 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()
DStopwatchModel.java55 private final StopwatchNotificationBuilder mNotificationBuilder = field in StopwatchModel
234 mNotificationBuilder.build(mContext, mNotificationModel, stopwatch); in updateNotification()
/packages/apps/Messaging/src/com/android/messaging/datamodel/
DBugleNotifications.java466 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()
DNotificationState.java64 public NotificationCompat.Builder mNotificationBuilder; field in NotificationState