Searched defs:mNotificationData (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
H A DNotificationDataTest.java56 private NotificationData mNotificationData; field in class:NotificationDataTest
74 mNotificationData = new TestableNotificationData(mock);
75 mNotificationData.updateRanking(mock(NotificationListenerService.RankingMap.class));
116 mNotificationData.add(mRow.getEntry());
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DStatusBarTest.java92 NotificationData mNotificationData; field in class:StatusBarTest
108 mNotificationData = mock(NotificationData.class);
123 mNotificationData, mPowerManager, mSystemServicesProxy, mNotificationPanelView,
282 when(mNotificationData.shouldSuppressScreenOn(any())).thenReturn(false);
283 when(mNotificationData.shouldFilterOut(any())).thenReturn(false);
285 when(mNotificationData.getImportance(any())).thenReturn(IMPORTANCE_HIGH);
303 when(mNotificationData.shouldSuppressScreenOn(any())).thenReturn(false);
304 when(mNotificationData.shouldFilterOut(any())).thenReturn(false);
306 when(mNotificationData.getImportance(any())).thenReturn(IMPORTANCE_HIGH);
334 when(mNotificationData
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBar.java664 // 1. Loop over mNotificationData entries:
672 ArrayList<Entry> activeNotifications = mNotificationData.getActiveNotifications();
780 mNotificationData = new NotificationData(this);
1025 mNotificationData.setHeadsUpManager(mHeadsUpManager);
1292 ArrayList<Entry> activeNotifications = mNotificationData.getActiveNotifications();
1570 mNotificationData.updateRanking(ranking);
1578 } else if (mNotificationData.getImportance(key)
1605 mNotificationData.getImportance(key));
1616 Entry addedEntry = mNotificationData.get(key);
1644 boolean isNew = mNotificationData
5194 protected NotificationData mNotificationData; field in class:StatusBar
[all...]

Completed in 40 milliseconds