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