HomeSort by relevance Sort by last modified time
    Searched defs:notificationInfo (Results 1 - 3 of 3) sorted by null

  /packages/apps/Launcher3/src/com/android/launcher3/popup/
PopupDataProvider.java 28 import com.android.launcher3.notification.NotificationInfo;
188 NotificationInfo notificationInfo = null;
197 notificationInfo = new NotificationInfo(mLauncher, activeNotifications[0]);
198 if (notificationInfo.shouldShowIconInBadge()) {
203 notificationInfo = null;
208 badgeInfo.setNotificationToShow(notificationInfo);
  /packages/apps/Dialer/java/com/android/dialer/app/calllog/
DefaultVoicemailNotifier.java 345 Pair<Uri, Integer> notificationInfo = getNotificationInfo(voicemail);
360 .setSound(notificationInfo.first)
361 .setDefaults(notificationInfo.second);
  /packages/apps/Car/Messenger/src/com/android/car/messenger/
MapMessageMonitor.java 60 private final Map<SenderKey, NotificationInfo> mNotificationInfos = new HashMap<>();
93 NotificationInfo notificationInfo = mNotificationInfos.get(senderKey);
94 if (notificationInfo == null) {
95 notificationInfo =
96 new NotificationInfo(message.getSenderName(), message.getSenderContactUri());
97 mNotificationInfos.put(senderKey, notificationInfo);
99 notificationInfo.mMessageKeys.add(messageKey);
100 updateNotificationFor(senderKey, notificationInfo, false /* ttsPlaying */);
104 NotificationInfo notificationInfo, boolean ttsPlaying)
    [all...]

Completed in 210 milliseconds