Home
last modified time | relevance | path

Searched refs:mNw (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Calendar/tests/src/com/android/calendar/alerts/
DAlertServiceTest.java321 actual.mNw); in validateNotificationsAndReset()
323 + debugStr, expected.mAlertIdsInDigest.length, actual.mNw.size()); in validateNotificationsAndReset()
324 for (int i = 0; i < actual.mNw.size(); i++) { in validateNotificationsAndReset()
327 + debugStr, a.mEventId, actual.mNw.get(i).mEventId); in validateNotificationsAndReset()
329 + debugStr, a.mBegin, actual.mNw.get(i).mBegin); in validateNotificationsAndReset()
331 + debugStr, a.mEnd, actual.mNw.get(i).mEnd); in validateNotificationsAndReset()
352 if (actual.mNw == null) { in printActualNotifications()
356 for (int digestIndex = 0; digestIndex < actual.mNw.size(); digestIndex++) { in printActualNotifications()
357 s.append(actual.mNw.get(digestIndex).mEventId + ","); in printActualNotifications()
/packages/apps/Calendar/src/com/android/calendar/alerts/
DAlertService.java129 ArrayList<NotificationWrapper> mNw; field in AlertService.NotificationWrapper
147 if (mNw == null) { in add()
148 mNw = new ArrayList<NotificationWrapper>(); in add()
150 mNw.add(nw); in add()