Searched refs:notificationIntent (Results 1 – 6 of 6) sorted by relevance
/packages/apps/TV/src/com/android/tv/receiver/ |
D | BootCompletedReceiver.java | 65 Intent notificationIntent = new Intent(context, NotificationService.class); in onReceive() local 66 notificationIntent.setAction(NotificationService.ACTION_SHOW_RECOMMENDATION); in onReceive() 67 context.startService(notificationIntent); in onReceive()
|
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
D | NotificationActionUtils.java | 199 final Intent notificationIntent, final NotificationCompat.Builder notification, in addNotificationActions() argument 210 folder, notificationIntent, notificationAction, notificationId, when); in addNotificationActions() 223 folder, notificationIntent, notificationAction, notificationId, when); in addNotificationActions() 351 final Folder folder, final Intent notificationIntent, in getNotificationActionPendingIntent() argument 370 taskStackBuilder.addNextIntent(notificationIntent).addNextIntent(intent); in getNotificationActionPendingIntent() 384 taskStackBuilder.addNextIntent(notificationIntent).addNextIntent(intent); in getNotificationActionPendingIntent() 420 final Folder folder, final Intent notificationIntent, in getWearNotificationActionPendingIntent() argument 442 taskStackBuilder.addNextIntent(notificationIntent).addNextIntent(intent); in getWearNotificationActionPendingIntent()
|
D | NotificationUtils.java | 697 final Intent notificationIntent; in validateNotifications() local 702 notificationIntent = createViewConversationIntent(context, account, folder, in validateNotifications() 705 notificationIntent = createViewConversationIntent(context, account, folder, in validateNotifications() 713 if (notificationIntent == null) { in validateNotifications() 718 clickIntent = createClickPendingIntent(context, notificationIntent); in validateNotifications() 722 cursor, clickIntent, notificationIntent, unreadCount, unseenCount, in validateNotifications() 902 Intent notificationIntent) { in createClickPendingIntent() argument 909 notificationIntent.putExtra(Utils.EXTRA_FROM_NOTIFICATION, true); in createClickPendingIntent() 910 PendingIntent clickIntent = PendingIntent.getActivity(context, -1, notificationIntent, in createClickPendingIntent() 912 notificationIntent.removeExtra(Utils.EXTRA_FROM_NOTIFICATION); in createClickPendingIntent() [all …]
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
D | UpdateHandler.java | 864 final PendingIntent notificationIntent = PendingIntent.getActivity(context, in showDictionaryAvailableNotification() local 870 if (null == notificationIntent || null == notificationManager) return; in showDictionaryAvailableNotification() 878 .setContentIntent(notificationIntent) in showDictionaryAvailableNotification()
|
/packages/apps/TV/src/com/android/tv/recommendation/ |
D | NotificationService.java | 438 final PendingIntent notificationIntent = PendingIntent.getActivity(this, 0, intent, 0); in sendNotification() local 448 .setContentIntent(notificationIntent) in sendNotification()
|
/packages/apps/TV/src/com/android/tv/ |
D | MainActivity.java | 823 Intent notificationIntent = new Intent(this, NotificationService.class); in onStart() local 824 notificationIntent.setAction(NotificationService.ACTION_SHOW_RECOMMENDATION); in onStart() 825 startService(notificationIntent); in onStart()
|