Home
last modified time | relevance | path

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

/packages/apps/Mms/src/com/android/mms/transaction/
DMessagingNotification.java266 SortedSet<NotificationInfo> notificationSet = in blockingUpdateNewMessageIndicator() local
271 addMmsNotificationInfos(context, threads, notificationSet); in blockingUpdateNewMessageIndicator()
272 addSmsNotificationInfos(context, threads, notificationSet); in blockingUpdateNewMessageIndicator()
274 if (notificationSet.isEmpty()) { in blockingUpdateNewMessageIndicator()
282 Log.d(TAG, "blockingUpdateNewMessageIndicator: count=" + notificationSet.size() + in blockingUpdateNewMessageIndicator()
298 notificationSet); in blockingUpdateNewMessageIndicator()
308 notificationSet.clear(); in blockingUpdateNewMessageIndicator()
573 Context context, Set<Long> threads, SortedSet<NotificationInfo> notificationSet) { in addMmsNotificationInfos() argument
651 notificationSet.add(info); in addMmsNotificationInfos()
715 Context context, Set<Long> threads, SortedSet<NotificationInfo> notificationSet) { in addSmsNotificationInfos() argument
[all …]
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
DNotificationUtils.java224 final Set<String> notificationSet = mailPrefs.getActiveNotificationSet(); in loadNotificationMap() local
225 if (notificationSet != null) { in loadNotificationMap()
226 for (String notificationEntry : notificationSet) { in loadNotificationMap()
284 final Set<String> notificationSet = Sets.newHashSet(); in saveNotificationMap() local
293 notificationSet.add(TextUtils.join(NOTIFICATION_PART_SEPARATOR, partValues)); in saveNotificationMap()
297 mailPrefs.cacheActiveNotificationSet(notificationSet); in saveNotificationMap()
/packages/apps/UnifiedEmail/src/com/android/mail/preferences/
DMailPrefs.java329 public void cacheActiveNotificationSet(final Set<String> notificationSet) { in cacheActiveNotificationSet() argument
330 getEditor().putStringSet(PreferenceKeys.CACHED_ACTIVE_NOTIFICATION_SET, notificationSet) in cacheActiveNotificationSet()