HomeSort by relevance Sort by last modified time
    Searched refs:activeNotifications (Results 1 - 16 of 16) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NotificationListenerWithPlugins.java 58 StatusBarNotification[] activeNotifications = super.getActiveNotifications();
60 activeNotifications = plugin.getActiveNotifications(activeNotifications);
62 return activeNotifications;
StatusBar.java     [all...]
  /packages/apps/Dialer/java/com/android/dialer/notification/
NotificationThrottler.java 61 StatusBarNotification[] activeNotifications = notificationManager.getActiveNotifications();
62 if (activeNotifications.length > HIGH_GLOBAL_NOTIFICATION_COUNT
67 activeNotifications.length);
75 for (StatusBarNotification currentNotification : activeNotifications) {
  /frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
NotificationListenerController.java 41 StatusBarNotification[] activeNotifications) {
42 return activeNotifications;
  /developers/build/prebuilts/gradle/ActiveNotifications/Application/src/main/java/com/example/android/activenotifications/
ActiveNotificationsFragment.java 1 package com.example.android.activenotifications;
48 "com.example.android.activenotifications.notification_type";
181 final StatusBarNotification[] activeNotifications = mNotificationManager
187 for (StatusBarNotification notification : activeNotifications) {
189 return activeNotifications.length - 1;
192 return activeNotifications.length;
  /developers/samples/android/notification/ActiveNotifications/Application/src/main/java/com/example/android/activenotifications/
ActiveNotificationsFragment.java 1 package com.example.android.activenotifications;
48 "com.example.android.activenotifications.notification_type";
181 final StatusBarNotification[] activeNotifications = mNotificationManager
187 for (StatusBarNotification notification : activeNotifications) {
189 return activeNotifications.length - 1;
192 return activeNotifications.length;
  /development/samples/browseable/ActiveNotifications/src/com.example.android.activenotifications/
ActiveNotificationsFragment.java 1 package com.example.android.activenotifications;
48 "com.example.android.activenotifications.notification_type";
181 final StatusBarNotification[] activeNotifications = mNotificationManager
187 for (StatusBarNotification notification : activeNotifications) {
189 return activeNotifications.length - 1;
192 return activeNotifications.length;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
InstallCarrierAppUtils.java 94 StatusBarNotification[] activeNotifications = notificationManager.getActiveNotifications();
96 if (activeNotifications == null) {
100 for (StatusBarNotification notification : activeNotifications) {
154 StatusBarNotification[] activeNotifications =
157 for (StatusBarNotification notification : activeNotifications) {
  /packages/apps/Launcher3/src/com/android/launcher3/notification/
NotificationListener.java 93 List<StatusBarNotification> activeNotifications;
96 activeNotifications = filterNotifications(getActiveNotifications());
99 activeNotifications = new ArrayList<StatusBarNotification>();
103 activeNotifications = new ArrayList<StatusBarNotification>();
106 mUiHandler.obtainMessage(message.what, activeNotifications).sendToTarget();
392 void onNotificationFullRefresh(List<StatusBarNotification> activeNotifications);
  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
MtpDocumentsService.java 98 final StatusBarNotification[] activeNotifications =
100 for (final StatusBarNotification notification : activeNotifications) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationMediaManager.java 111 ArrayList<NotificationData.Entry> activeNotifications = mEntryManager
113 final int N = activeNotifications.size();
119 final NotificationData.Entry entry = activeNotifications.get(i);
159 final NotificationData.Entry entry = activeNotifications.get(i);
NotificationViewHierarchyManager.java 86 ArrayList<NotificationData.Entry> activeNotifications = mEntryManager.getNotificationData()
88 ArrayList<ExpandableNotificationRow> toShow = new ArrayList<>(activeNotifications.size());
89 final int N = activeNotifications.size();
91 NotificationData.Entry ent = activeNotifications.get(i);
NotificationLogger.java 103 ArrayList<NotificationData.Entry> activeNotifications = mEntryManager
105 int N = activeNotifications.size();
107 NotificationData.Entry entry = activeNotifications.get(i);
  /packages/apps/Launcher3/src/com/android/launcher3/popup/
PopupDataProvider.java 113 public void onNotificationFullRefresh(List<StatusBarNotification> activeNotifications) {
114 if (activeNotifications == null) return;
118 for (StatusBarNotification notification : activeNotifications) {
  /frameworks/base/core/java/android/service/notification/
NotificationListenerService.java     [all...]
  /frameworks/base/packages/Shell/tests/src/com/android/shell/
BugreportReceiverTest.java 643 StatusBarNotification[] activeNotifications = nm.getActiveNotifications();
644 if (activeNotifications.length == 0) {
648 Log.w(TAG, getName() + ": " + activeNotifications.length + " active notifications");
    [all...]

Completed in 351 milliseconds