HomeSort by relevance Sort by last modified time
    Searched refs:NotificationInfo (Results 1 - 25 of 44) sorted by null

1 2

  /packages/apps/Launcher3/src/com/android/launcher3/notification/
NotificationFooterLayout.java 50 void onIconAnimationEnd(NotificationInfo animatedNotification);
57 private final List<NotificationInfo> mNotifications = new ArrayList<>();
58 private final List<NotificationInfo> mOverflowNotifications = new ArrayList<>();
109 * Keep track of the NotificationInfo, and then update the UI when
112 public void addNotificationInfo(final NotificationInfo notificationInfo) {
114 mNotifications.add(notificationInfo);
116 mOverflowNotifications.add(notificationInfo);
121 * Adds icons and potentially overflow text for all of the NotificationInfo's
122 * added using {@link #addNotificationInfo(NotificationInfo)}
    [all...]
NotificationInfo.java 43 public class NotificationInfo implements View.OnClickListener {
61 public NotificationInfo(Context context, StatusBarNotification statusBarNotification) {
NotificationMainView.java 71 private NotificationInfo mNotificationInfo;
117 public void applyNotificationInfo(NotificationInfo mainNotification, boolean animate) {
153 public NotificationInfo getNotificationInfo() {
NotificationItemView.java 162 public void applyNotificationInfos(final List<NotificationInfo> notificationInfos) {
167 NotificationInfo mainNotification = notificationInfos.get(0);
  /packages/apps/Calendar/tests/src/com/android/calendar/alerts/
AlertServiceTest.java 35 import com.android.calendar.alerts.AlertService.NotificationInfo;
710 private NotificationInfo createNotificationInfo(long eventId) {
711 return new NotificationInfo("eventName", "location", "description", 100L, 200L, eventId,
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertService.java 315 ArrayList<NotificationInfo> highPriorityEvents = new ArrayList<NotificationInfo>();
316 ArrayList<NotificationInfo> mediumPriorityEvents = new ArrayList<NotificationInfo>();
317 ArrayList<NotificationInfo> lowPriorityEvents = new ArrayList<NotificationInfo>();
341 NotificationInfo info = highPriorityEvents.get(i);
358 NotificationInfo info = mediumPriorityEvents.get(i);
377 NotificationInfo info = lowPriorityEvents.get(0);
445 static void redistributeBuckets(ArrayList<NotificationInfo> highPriorityEvents
    [all...]
AlertReceiver.java 449 ArrayList<AlertService.NotificationInfo> notificationInfos, String digestTitle,
500 for (AlertService.NotificationInfo info : notificationInfos) {
573 for (AlertService.NotificationInfo info : notificationInfos) {
    [all...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
NotificationGutsManagerTest.java 92 @Mock private NotificationInfo.CheckSaveListener mCheckSaveListener;
270 NotificationInfo notificationInfoView = mock(NotificationInfo.class);
286 any(NotificationInfo.CheckSaveListener.class),
287 any(NotificationInfo.OnSettingsClickListener.class),
288 any(NotificationInfo.OnAppSettingsClickListener.class),
296 NotificationInfo notificationInfoView = mock(NotificationInfo.class);
312 any(NotificationInfo.CheckSaveListener.class),
313 any(NotificationInfo.OnSettingsClickListener.class)
    [all...]
NonPhoneDependencyTest.java 54 @Mock private NotificationInfo.CheckSaveListener mCheckSaveListener;
NotificationInfoTest.java 100 private NotificationInfo mNotificationInfo;
121 mNotificationInfo = (NotificationInfo) layoutInflater.inflate(R.layout.notification_info,
514 NotificationInfo.CheckSaveListener listener =
515 mock(NotificationInfo.CheckSaveListener.class);
542 NotificationInfo.CheckSaveListener listener =
543 mock(NotificationInfo.CheckSaveListener.class);
560 NotificationInfo.CheckSaveListener listener =
561 mock(NotificationInfo.CheckSaveListener.class);
    [all...]
  /packages/apps/Dialer/java/com/android/incallui/
ExternalCallNotifier.java 78 private Map<Call, NotificationInfo> notifications = new ArrayMap<>();
98 NotificationInfo info = new NotificationInfo(call, nextUniqueNotificationId++);
135 for (NotificationInfo info : notifications.values()) {
148 private void showNotifcation(final NotificationInfo info) {
204 private void savePhoto(NotificationInfo info, ContactInfoCache.ContactCacheEntry entry) {
217 private void saveContactInfo(NotificationInfo info, ContactInfoCache.ContactCacheEntry entry) {
223 /** Rebuild an existing or show a new notification given {@link NotificationInfo}. */
224 private void postNotification(NotificationInfo info) {
405 private static class NotificationInfo {
    [all...]
  /packages/apps/Car/Messenger/src/com/android/car/messenger/
MapMessageMonitor.java 92 private final Map<SenderKey, NotificationInfo> mNotificationInfos = new HashMap<>();
135 NotificationInfo notificationInfo = mNotificationInfos.get(senderKey);
136 if (notificationInfo == null) {
137 notificationInfo =
138 new NotificationInfo(message.getSenderName(), message.getSenderContactUri());
139 mNotificationInfos.put(senderKey, notificationInfo);
141 notificationInfo.mMessageKeys.add(messageKey);
142 updateNotificationFor(senderKey, notificationInfo);
179 private void updateNotificationFor(SenderKey senderKey, NotificationInfo notificationInfo)
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/badge/
BadgeInfo.java 19 import com.android.launcher3.notification.NotificationInfo;
38 * used to retrieve {@link NotificationInfo}'s.
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationGutsManager.java 81 private NotificationInfo.CheckSaveListener mCheckSaveListener;
95 NotificationInfo.CheckSaveListener checkSaveListener,
183 } else if (gutsView instanceof NotificationInfo) {
184 initializeNotificationInfo(row, (NotificationInfo) gutsView);
235 * Sets up the {@link NotificationInfo} inside the notification row's guts.
243 NotificationInfo notificationInfoView) {
248 NotificationInfo.OnSettingsClickListener onSettingsClick = null;
254 final NotificationInfo.OnAppSettingsClickListener onAppSettingsClick =
NotificationInfo.java 65 public class NotificationInfo extends LinearLayout implements NotificationGuts.GutsContent {
116 public NotificationInfo(Context context, AttributeSet attrs) {
122 // Invoked when importance has changed and the NotificationInfo wants to try to save it.
NotificationMenuRow.java 627 NotificationInfo infoContent = (NotificationInfo) LayoutInflater.from(context).inflate(
  /packages/apps/Launcher3/src/com/android/launcher3/popup/
PopupPopulator.java 30 import com.android.launcher3.notification.NotificationInfo;
134 List<NotificationInfo> infos = new ArrayList<>(notifications.size());
137 infos.add(new NotificationInfo(launcher, notification));
PopupContainerWithArrow.java 62 import com.android.launcher3.notification.NotificationInfo;
305 public void applyNotificationInfos(List<NotificationInfo> notificationInfos) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rpcasync.h 244 RPC_ASYNC_NOTIFICATION_INFO *NotificationInfo
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
StatusBar.java 203 import com.android.systemui.statusbar.NotificationInfo;
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/intellij-core/26.0.0/
intellij-core-26.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/intellij-core/26.0.0-alpha4/
intellij-core-26.0.0-alpha4.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/intellij-core/26.0.0-alpha5/
intellij-core-26.0.0-alpha5.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/intellij-core/26.0.0-alpha6/
intellij-core-26.0.0-alpha6.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/intellij-core/26.0.0-alpha7/
intellij-core-26.0.0-alpha7.jar 

Completed in 515 milliseconds

1 2