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.java179 List<ExpandableNotificationRow> orderedChildren = in updateNotificationViews() local
181 if (orderedChildren == null) { in updateNotificationViews()
182 orderedChildren = new ArrayList<>(); in updateNotificationViews()
183 mTmpChildOrderMap.put(summary.getRow(), orderedChildren); in updateNotificationViews() local
185 orderedChildren.add(ent.getRow()); in updateNotificationViews()
287 List<ExpandableNotificationRow> orderedChildren = mTmpChildOrderMap.get(parent); in addNotificationChildrenAndSort() local
289 for (int childIndex = 0; orderedChildren != null && childIndex < orderedChildren.size(); in addNotificationChildrenAndSort()
291 ExpandableNotificationRow childView = orderedChildren.get(childIndex); in addNotificationChildrenAndSort()
307 orderChanged |= parent.applyChildOrder(orderedChildren, mVisualStabilityManager, in addNotificationChildrenAndSort()
327 List<ExpandableNotificationRow> orderedChildren = mTmpChildOrderMap.get(parent); in removeNotificationChildren() local
[all …]