Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationViewHierarchyManager.java145 ArrayList<ExpandableNotificationRow> toShow = new ArrayList<>(activeNotifications.size()); in updateNotificationViews() local
187 toShow.add(ent.getRow()); in updateNotificationViews()
194 if (!toShow.contains(child) && child instanceof ExpandableNotificationRow) { in updateNotificationViews()
220 for (int i = 0; i < toShow.size(); i++) { in updateNotificationViews()
221 View v = toShow.get(i); in updateNotificationViews()
228 toShow.remove(v); in updateNotificationViews()
250 ExpandableNotificationRow targetChild = toShow.get(j); in updateNotificationViews()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNotificationIconAreaController.java347 ArrayList<StatusBarIconView> toShow = new ArrayList<>( in updateIconsForLayout() local
360 toShow.add(iconView); in updateIconsForLayout()
377 if (!toShow.contains(child)) { in updateIconsForLayout()
381 for (int j = 0; j < toShow.size(); j++) { in updateIconsForLayout()
382 StatusBarIconView candidate = toShow.get(j); in updateIconsForLayout()
421 for (int i = 0; i < toShow.size(); i++) { in updateIconsForLayout()
422 StatusBarIconView v = toShow.get(i); in updateIconsForLayout()
438 StatusBarIconView expected = toShow.get(i); in updateIconsForLayout()