Searched refs:orderedChildren (Results 1 – 1 of 1) sorted by relevance
212 List<NotificationEntry> orderedChildren = mTmpChildOrderMap.get(parent); in updateNotificationViews() local213 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() local334 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 …]