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.java175 List<ExpandableNotificationRow> orderedChildren = in updateNotificationViews() local
177 if (orderedChildren == null) { in updateNotificationViews()
178 orderedChildren = new ArrayList<>(); in updateNotificationViews()
179 mTmpChildOrderMap.put(summary.getRow(), orderedChildren); in updateNotificationViews() local
181 orderedChildren.add(ent.getRow()); in updateNotificationViews()
283 List<ExpandableNotificationRow> orderedChildren = mTmpChildOrderMap.get(parent); in addNotificationChildrenAndSort() local
285 for (int childIndex = 0; orderedChildren != null && childIndex < orderedChildren.size(); in addNotificationChildrenAndSort()
287 ExpandableNotificationRow childView = orderedChildren.get(childIndex); in addNotificationChildrenAndSort()
303 orderChanged |= parent.applyChildOrder(orderedChildren, mVisualStabilityManager, in addNotificationChildrenAndSort()
323 List<ExpandableNotificationRow> orderedChildren = mTmpChildOrderMap.get(parent); in removeNotificationChildren() local
[all …]