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.java213 List<NotificationEntry> orderedChildren = mTmpChildOrderMap.get(parent); in updateNotificationViews() local
214 if (orderedChildren == null) { in updateNotificationViews()
215 orderedChildren = new ArrayList<>(); in updateNotificationViews()
216 mTmpChildOrderMap.put(parent, orderedChildren); in updateNotificationViews()
218 orderedChildren.add(ent); in updateNotificationViews()
353 List<NotificationEntry> orderedChildren = mTmpChildOrderMap.get(parent.getEntry()); in addNotificationChildrenAndSort() local
354 if (orderedChildren == null) { in addNotificationChildrenAndSort()
358 parent.setUntruncatedChildCount(orderedChildren.size()); in addNotificationChildrenAndSort()
359 for (int childIndex = 0; childIndex < orderedChildren.size(); childIndex++) { in addNotificationChildrenAndSort()
360 ExpandableNotificationRow childView = orderedChildren.get(childIndex).getRow(); in addNotificationChildrenAndSort()
[all …]