Searched refs:_notifications (Results 1 – 2 of 2) sorted by relevance
/external/chromium-trace/catapult/telemetry/telemetry/testing/fakes/ |
D | __init__.py | 401 self._notifications = [] 410 if self._notifications: 411 assert self._notifications[-1][1] < time, ( 414 self._notifications.append((response, time, self._NOTIFICATION_EVENT)) 417 if self._notifications: 418 assert self._notifications[-1][1] < time, ( 421 self._notifications.append((response, time, self._NOTIFICATION_CALLBACK)) 442 if not self._notifications: 446 response, time, kind = self._notifications[0] 451 self._notifications.pop(0)
|
/external/jetty/src/java/org/eclipse/jetty/util/ |
D | Scanner.java | 68 private final Map<String,Notification> _notifications = new HashMap<String,Notification>(); field in Scanner 471 Notification old=_notifications.put(file,Notification.ADDED); 478 _notifications.put(file,Notification.CHANGED); 484 Notification old=_notifications.put(file,Notification.CHANGED); 490 _notifications.put(file,Notification.ADDED); 501 Notification old=_notifications.put(file,Notification.REMOVED); 507 _notifications.remove(file); 514 LOG.debug("scanned "+_scanDirs+": "+_notifications); 519 …for (Iterator<Entry<String,Notification>> iter = _notifications.entrySet().iterator();iter.hasNext…
|