Home
last modified time | relevance | path

Searched refs:NotificationInfo (Results 1 – 11 of 11) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/notification/
DNotificationFooterLayout.java49 void onIconAnimationEnd(NotificationInfo animatedNotification); in onIconAnimationEnd()
56 private final List<NotificationInfo> mNotifications = new ArrayList<>();
57 private final List<NotificationInfo> mOverflowNotifications = new ArrayList<>();
111 public void addNotificationInfo(final NotificationInfo notificationInfo) { in addNotificationInfo()
127 NotificationInfo info = mNotifications.get(i); in commitNotificationInfos()
141 private View addNotificationIconForInfo(NotificationInfo info) { in addNotificationIconForInfo()
166 callback.onIconAnimationEnd((NotificationInfo) firstNotification.getTag()); in animateFirstNotificationTo()
178 NotificationInfo notification = mOverflowNotifications.remove(0); in animateFirstNotificationTo()
213 Iterator<NotificationInfo> overflowIterator = mOverflowNotifications.iterator(); in trimNotifications()
221 NotificationInfo childInfo = (NotificationInfo) child.getTag(); in trimNotifications()
DNotificationMainView.java71 private NotificationInfo mNotificationInfo;
117 public void applyNotificationInfo(NotificationInfo mainNotification, boolean animate) { in applyNotificationInfo()
157 public NotificationInfo getNotificationInfo() { in getNotificationInfo()
DNotificationInfo.java44 public class NotificationInfo implements View.OnClickListener { class
61 public NotificationInfo(Context context, StatusBarNotification statusBarNotification) { in NotificationInfo() method in NotificationInfo
DNotificationItemView.java162 public void applyNotificationInfos(final List<NotificationInfo> notificationInfos) { in applyNotificationInfos()
167 NotificationInfo mainNotification = notificationInfos.get(0); in applyNotificationInfos()
/packages/apps/Dialer/java/com/android/incallui/
DExternalCallNotifier.java78 private Map<Call, NotificationInfo> notifications = new ArrayMap<>();
96 NotificationInfo info = new NotificationInfo(call, nextUniqueNotificationId++); in onExternalCallAdded()
133 for (NotificationInfo info : notifications.values()) { in pullExternalCall()
146 private void showNotifcation(final NotificationInfo info) { in showNotifcation()
202 private void savePhoto(NotificationInfo info, ContactInfoCache.ContactCacheEntry entry) { in savePhoto()
215 private void saveContactInfo(NotificationInfo info, ContactInfoCache.ContactCacheEntry entry) { in saveContactInfo()
222 private void postNotification(NotificationInfo info) { in postNotification()
399 private static class NotificationInfo { class in ExternalCallNotifier
407 public NotificationInfo(@NonNull Call call, int notificationId) { in NotificationInfo() method in ExternalCallNotifier.NotificationInfo
/packages/apps/Car/Messenger/src/com/android/car/messenger/
DMessengerDelegate.java66 final Map<SenderKey, NotificationInfo> mNotificationInfos = new HashMap<>();
163 NotificationInfo notificationInfo = mNotificationInfos.get(senderKey); in sendMessage()
196 NotificationInfo info = mNotificationInfos.get(senderKey); in markAsRead()
242 mNotificationInfos.put(senderKey, new NotificationInfo(mapMessage.getSenderName(), in updateNotification()
245 NotificationInfo notificationInfo = mNotificationInfos.get(senderKey); in updateNotification()
251 private void updateNotification(SenderKey senderKey, NotificationInfo notificationInfo) { in updateNotification()
308 SenderKey senderKey, NotificationInfo notificationInfo, Bitmap bitmap) { in createNotification()
436 static class NotificationInfo { class in MessengerDelegate
445 NotificationInfo(String senderName, @Nullable String senderContactUri) { in NotificationInfo() method in MessengerDelegate.NotificationInfo
/packages/apps/Launcher3/src/com/android/launcher3/popup/
DPopupPopulator.java29 import com.android.launcher3.notification.NotificationInfo;
135 List<NotificationInfo> infos = new ArrayList<>(notifications.size()); in createUpdateRunnable()
138 infos.add(new NotificationInfo(launcher, notification)); in createUpdateRunnable()
DPopupContainerWithArrow.java64 import com.android.launcher3.notification.NotificationInfo;
337 public void applyNotificationInfos(List<NotificationInfo> notificationInfos) { in applyNotificationInfos()
/packages/apps/Car/Messenger/tests/robotests/src/com/android/car/messenger/
DMessengerDelegateTest.java173 MessengerDelegate.NotificationInfo info = mMessengerDelegate.mNotificationInfos.get( in testOnMessageReceived_duplicateMessage()
182 MessengerDelegate.NotificationInfo info = mMessengerDelegate.mNotificationInfos.get( in testClearNotification_keepsNotificationData()
195 MessengerDelegate.NotificationInfo info = mMessengerDelegate.mNotificationInfos.get( in testHandleMarkAsRead()
/packages/apps/Calendar/src/com/android/calendar/alerts/
DAlertService.java161 static class NotificationInfo { class in AlertService
171 NotificationInfo(String eventName, String location, String description, long startMillis, in NotificationInfo() method in AlertService.NotificationInfo
/packages/apps/Launcher3/src/com/android/launcher3/dot/
DDotInfo.java19 import com.android.launcher3.notification.NotificationInfo;