Home
last modified time | relevance | path

Searched refs:notification (Results 1 – 25 of 25) sorted by relevance

/packages/apps/Phone/src/com/android/phone/
DNotificationMgr.java572 Notification notification = builder.getNotification(); in notifyMissedCall() local
573 configureLedNotification(notification); in notifyMissedCall()
574 mNotificationManager.notify(MISSED_CALL_NOTIFICATION, notification); in notifyMissedCall()
1107 Notification notification = builder.getNotification(); in updateInCallNotification() local
1108 if (DBG) log("Notifying IN_CALL_NOTIFICATION: " + notification); in updateInCallNotification()
1109 mNotificationManager.notify(IN_CALL_NOTIFICATION, notification); in updateInCallNotification()
1277 Notification notification = builder.getNotification(); in updateMwi() local
1283 notification.defaults |= Notification.DEFAULT_VIBRATE; in updateMwi()
1285 notification.flags |= Notification.FLAG_NO_CLEAR; in updateMwi()
1286 configureLedNotification(notification); in updateMwi()
[all …]
DEmergencyCallbackModeService.java167 Notification notification = new Notification( in showNotification() local
187 notification.setLatestEventInfo(this, getText(R.string.phone_in_ecm_notification_title), in showNotification()
190 notification.flags = Notification.FLAG_ONGOING_EVENT; in showNotification()
193 mNotificationManager.notify(R.string.phone_in_ecm_notification_title, notification); in showNotification()
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
DNotificationImportExportListener.java87 final Notification notification = constructProgressNotification(mContext, in onImportProcessed() local
89 mNotificationManager.notify(DEFAULT_NOTIFICATION_TAG, jobId, notification); in onImportProcessed()
108 final Notification notification = constructProgressNotification( in onImportParsed() local
111 mNotificationManager.notify(DEFAULT_NOTIFICATION_TAG, jobId, notification); in onImportParsed()
128 final Notification notification = in onImportFinished() local
132 jobId, notification); in onImportFinished()
147 final Notification notification = in onImportCanceled() local
150 jobId, notification); in onImportCanceled()
160 final Notification notification = in onExportProcessed() local
163 mNotificationManager.notify(DEFAULT_NOTIFICATION_TAG, jobId, notification); in onExportProcessed()
[all …]
DExportProcessor.java240 final Notification notification = in doProgressNotification() local
245 mJobId, notification); in doProgressNotification()
252 final Notification notification = in doCancelNotification() local
255 mJobId, notification); in doCancelNotification()
262 final Notification notification = in doFinishNotification() local
266 mJobId, notification); in doFinishNotification()
DImportVCardActivity.java1018 final Notification notification = in showFailureNotification() local
1023 FAILURE_NOTIFICATION_ID, notification); in showFailureNotification()
/packages/apps/Calendar/src/com/android/calendar/alerts/
DAlertService.java365 NotificationWrapper notification; in generateAlerts() local
371 notification = AlertReceiver.makeBasicNotification(context, info.eventName, in generateAlerts()
377 notification = AlertReceiver.makeDigestNotification(context, in generateAlerts()
382 addNotificationOptions(notification, true, expiredDigestTitle, in generateAlerts()
393 nm.notify(AlertUtils.EXPIRED_GROUP_NOTIFICATION_ID, notification); in generateAlerts()
862 NotificationWrapper notification = AlertReceiver.makeExpandingNotification(context, in postNotification() local
875 addNotificationOptions(notification, quietUpdate, tickerText, in postNotification()
880 notificationMgr.notify(notificationId, notification); in postNotification()
924 Notification notification = nw.mNotification; in addNotificationOptions() local
926 notification.flags |= Notification.FLAG_SHOW_LIGHTS; in addNotificationOptions()
[all …]
DAlertReceiver.java371 R.layout.notification); in buildBasicNotification()
424 Notification notification = buildBasicNotification(basicBuilder, context, title, in makeExpandingNotification() local
448 notification = expandedBuilder.build(); in makeExpandingNotification()
450 return new NotificationWrapper(notification, notificationId, eventId, startMillis, in makeExpandingNotification()
565 R.layout.notification); in makeDigestNotification()
DNotificationMgr.java22 public abstract void notify(int id, NotificationWrapper notification); in notify() argument
/packages/apps/Mms/src/com/android/mms/transaction/
DMessagingNotification.java939 final Notification notification; in updateNotification() local
950 notification = new Notification.BigPictureStyle(noti) in updateNotification()
957 notification = new Notification.BigTextStyle(noti) in updateNotification()
988 notification = new Notification.BigTextStyle(noti) in updateNotification()
1029 notification = inboxStyle.build(); in updateNotification()
1037 nm.notify(NOTIFICATION_ID, notification); in updateNotification()
1113 Notification notification = new Notification(); in notifyFailed() local
1145 notification.icon = R.drawable.stat_notify_sms_failed; in notifyFailed()
1147 notification.tickerText = title; in notifyFailed()
1149 notification.setLatestEventInfo(context, title, description, in notifyFailed()
[all …]
DSimFullReceiver.java52 Notification notification = new Notification(); in onReceive() local
53 notification.icon = R.drawable.stat_sys_no_sim; in onReceive()
54 notification.tickerText = context.getString(R.string.sim_full_title); in onReceive()
55 notification.defaults = Notification.DEFAULT_ALL; in onReceive()
57 notification.setLatestEventInfo( in onReceive()
61 nm.notify(ManageSimMessages.SIM_FULL_NOTIFICATION_ID, notification); in onReceive()
DSmsRejectedReceiver.java64 Notification notification = new Notification(); in onReceive() local
67 notification.icon = R.drawable.stat_sys_no_sim; in onReceive()
77 notification.tickerText = context.getString(titleId); in onReceive()
78 notification.defaults = Notification.DEFAULT_ALL; in onReceive()
80 notification.setLatestEventInfo( in onReceive()
84 nm.notify(SMS_REJECTED_NOTIFICATION_ID, notification); in onReceive()
/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothPermissionRequest.java97 Notification notification = new Notification( in onReceive() local
102 notification.setLatestEventInfo(context, in onReceive()
106 notification.flags = Notification.FLAG_AUTO_CANCEL | in onReceive()
108 notification.defaults = Notification.DEFAULT_SOUND; in onReceive()
109 notification.deleteIntent = PendingIntent.getBroadcast(context, 0, deleteIntent, 0); in onReceive()
113 notificationManager.notify(NOTIFICATION_ID, notification); in onReceive()
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapService.java699 Notification notification = null; in createPbapNotification() local
704 notification = new Notification(android.R.drawable.stat_sys_data_bluetooth, in createPbapNotification()
706 notification.setLatestEventInfo(this, getString(R.string.auth_notif_title), in createPbapNotification()
710 notification.flags |= Notification.FLAG_AUTO_CANCEL; in createPbapNotification()
711 notification.flags |= Notification.FLAG_ONLY_ALERT_ONCE; in createPbapNotification()
712 notification.defaults = Notification.DEFAULT_SOUND; in createPbapNotification()
713 notification.deleteIntent = PendingIntent.getBroadcast(this, 0, deleteIntent, 0); in createPbapNotification()
714 nm.notify(NOTIFICATION_ID_AUTH, notification); in createPbapNotification()
/packages/apps/Settings/src/com/android/settings/
DNotificationStation.java22 import android.service.notification.INotificationListener;
25 import android.service.notification.StatusBarNotification;
74 … public void onNotificationPosted(StatusBarNotification notification) throws RemoteException {
75 Log.v(TAG, "onNotificationPosted: " + notification);
82 … public void onNotificationRemoved(StatusBarNotification notification) throws RemoteException {
DNotificationAccessSettings.java32 import android.service.notification.NotificationListenerService;
/packages/apps/Browser/src/com/android/browser/
DWebStorageSizeManager.java409 Notification notification = new Notification(icon, title, when); in scheduleOutOfSpaceNotification() local
410 notification.setLatestEventInfo(mContext, title, text, contentIntent); in scheduleOutOfSpaceNotification()
411 notification.flags |= Notification.FLAG_AUTO_CANCEL; in scheduleOutOfSpaceNotification()
418 mgr.notify(OUT_OF_SPACE_ID, notification); in scheduleOutOfSpaceNotification()
/packages/apps/DeskClock/src/com/android/deskclock/timer/
DTimerReceiver.java290 Notification notification = builder.build(); in showCollapsedNotification() local
291 notification.contentIntent = pendingIntent; in showCollapsedNotification()
294 notificationManager.notify(notificationId, notification); in showCollapsedNotification()
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
DStopwatchService.java231 Notification notification = new Notification.Builder(context) in setNotification() local
238 notification.bigContentView = remoteViewsExpanded; in setNotification()
239 mNotificationManager.notify(NOTIFICATION_ID, notification); in setNotification()
/packages/apps/BasicSmsReceiver/src/com/android/basicsmsreceiver/
DSmsMessageReceiver.java56 Notification.Builder notification = new Notification.Builder(context) in addNotification() local
70 notificationManager.notify(notificationId, notification.getNotification()); in addNotification()
/packages/apps/Gallery2/src/com/android/photos/data/
DPhotoProvider.java346 public void setMockNotification(ChangeNotification notification) { in setMockNotification() argument
347 mNotifier = notification; in setMockNotification()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DUpdateHandler.java863 final Notification notification = new Notification.Builder(context) in showDictionaryAvailableNotification() local
873 notificationManager.notify(DICT_AVAILABLE_NOTIFICATION_ID, notification); in showDictionaryAvailableNotification()
/packages/inputmethods/LatinIME/dictionaries/
Den_GB_wordlist.combined.gz
Den_US_wordlist.combined.gz1dictionary=main:en_us,locale=en_US,description=English (US),date ...
Den_wordlist.combined.gz
Dfr_wordlist.combined.gz