Home | History | Annotate | Download | only in phone

Lines Matching defs:toShow

1463         ArrayList<ExpandableNotificationRow> toShow = new ArrayList<>(activeNotifications.size());
1486 toShow.add(ent.row);
1492 if (!toShow.contains(child) && child instanceof ExpandableNotificationRow) {
1500 for (int i=0; i<toShow.size(); i++) {
1501 View v = toShow.get(i);
1508 // Let's do that now by advancing through toShow and mStackScroller in
1509 // lock-step, making sure mStackScroller matches what we see in toShow.
1518 if (child == toShow.get(j)) {
1526 mStackScroller.changeViewPosition(toShow.get(j), i);
1596 ArrayList<StatusBarIconView> toShow = new ArrayList<>(N);
1605 toShow.add(ent.icon);
1609 Log.d(TAG, "refreshing icons: " + toShow.size() +
1616 if (!toShow.contains(child)) {
1626 for (int i=0; i<toShow.size(); i++) {
1627 View v = toShow.get(i);
1637 StatusBarIconView expected = toShow.get(i);