Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationViewHierarchyManager.java212 List<NotificationEntry> orderedChildren = mTmpChildOrderMap.get(parent); in updateNotificationViews() local
213 if (orderedChildren == null) { in updateNotificationViews()
214 orderedChildren = new ArrayList<>(); in updateNotificationViews()
215 mTmpChildOrderMap.put(parent, orderedChildren); in updateNotificationViews()
217 orderedChildren.add(ent); in updateNotificationViews()
333 List<NotificationEntry> orderedChildren = mTmpChildOrderMap.get(parent.getEntry()); in addNotificationChildrenAndSort() local
334 if (orderedChildren == null) { in addNotificationChildrenAndSort()
338 parent.setUntruncatedChildCount(orderedChildren.size()); in addNotificationChildrenAndSort()
339 for (int childIndex = 0; childIndex < orderedChildren.size(); childIndex++) { in addNotificationChildrenAndSort()
340 ExpandableNotificationRow childView = orderedChildren.get(childIndex).getRow(); in addNotificationChildrenAndSort()
[all …]