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/phone/
DNotificationIconAreaController.java304 ArrayList<StatusBarIconView> toShow = new ArrayList<>( in updateIconsForLayout() local
316 toShow.add(iconView); in updateIconsForLayout()
333 if (!toShow.contains(child)) { in updateIconsForLayout()
337 for (int j = 0; j < toShow.size(); j++) { in updateIconsForLayout()
338 StatusBarIconView candidate = toShow.get(j); in updateIconsForLayout()
377 for (int i = 0; i < toShow.size(); i++) { in updateIconsForLayout()
378 StatusBarIconView v = toShow.get(i); in updateIconsForLayout()
394 StatusBarIconView expected = toShow.get(i); in updateIconsForLayout()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationViewHierarchyManager.java141 ArrayList<ExpandableNotificationRow> toShow = new ArrayList<>(activeNotifications.size()); in updateNotificationViews() local
183 toShow.add(ent.getRow()); in updateNotificationViews()
190 if (!toShow.contains(child) && child instanceof ExpandableNotificationRow) { in updateNotificationViews()
216 for (int i = 0; i < toShow.size(); i++) { in updateNotificationViews()
217 View v = toShow.get(i); in updateNotificationViews()
224 toShow.remove(v); in updateNotificationViews()
246 ExpandableNotificationRow targetChild = toShow.get(j); in updateNotificationViews()