Home | History | Annotate | Download | only in phone

Lines Matching defs:toShow

1430         ArrayList<ExpandableNotificationRow> toShow = new ArrayList<>(activeNotifications.size());
1453 toShow.add(ent.row);
1459 if (!toShow.contains(child) && child instanceof ExpandableNotificationRow) {
1467 for (int i=0; i<toShow.size(); i++) {
1468 View v = toShow.get(i);
1475 // Let's do that now by advancing through toShow and mStackScroller in
1476 // lock-step, making sure mStackScroller matches what we see in toShow.
1485 if (child == toShow.get(j)) {
1493 mStackScroller.changeViewPosition(toShow.get(j), i);
1562 ArrayList<StatusBarIconView> toShow = new ArrayList<>(N);
1571 toShow.add(ent.icon);
1575 Log.d(TAG, "refreshing icons: " + toShow.size() +
1582 if (!toShow.contains(child)) {
1592 for (int i=0; i<toShow.size(); i++) {
1593 View v = toShow.get(i);
1603 StatusBarIconView expected = toShow.get(i);