/libcore/dom/src/test/java/org/w3c/domts/ |
UserDataMonitor.java | 22 * notifications 26 private final List notifications = new ArrayList(); field in class:UserDataMonitor 56 notifications.add( 61 * Gets list of notifications 63 * @return List of notifications, may not be null. 66 return new ArrayList(notifications);
|
/external/chromium_org/chrome/browser/task_manager/ |
task_manager_notification_browsertest.cc | 10 #include "chrome/browser/notifications/desktop_notification_service.h" 11 #include "chrome/browser/notifications/notification.h" 12 #include "chrome/browser/notifications/notification_test_util.h" 13 #include "chrome/browser/notifications/notification_ui_manager.h" 49 // where notifications do not instantiate a new renderer. 61 NotificationUIManager* notifications = local 77 notifications->Add(n1, browser()->profile()); 79 notifications->Add(n2, browser()->profile()); 81 notifications->CancelById(n1.notification_id()); 83 notifications->CancelById(n2.notification_id()) [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowNotificationManager.java | 17 private Map<Integer, Notification> notifications = new HashMap<Integer, Notification>(); field in class:ShadowNotificationManager 31 notifications.put(id, notification); 44 if (notifications.containsKey(id)) { 45 notifications.remove(id); 47 notifications.remove(tagId); 53 notifications.clear(); 58 return notifications.size(); 62 return notifications.get(id); 67 return notifications.get(id); 71 return new ArrayList<Notification>(notifications.values()) [all...] |
/hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/ |
TrustletSession.h | 44 std::queue<notification_t> notifications; member in class:TrustletSession
|
/external/chromium_org/ash/display/ |
display_error_observer_chromeos.cc | 61 message_center::NotificationList::Notifications notifications = local 63 for (message_center::NotificationList::Notifications::const_iterator iter = 64 notifications.begin(); iter != notifications.end(); ++iter) {
|
/external/chromium_org/ash/system/session_length_limit/ |
tray_session_length_limit_unittest.cc | 46 const message_center::NotificationList::Notifications& notifications = local 48 for (message_center::NotificationList::Notifications::const_iterator iter = 49 notifications.begin(); iter != notifications.end(); ++iter) { 117 // No notifications when no session limit.
|
/hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/public/ |
MobiCoreDevice.h | 83 CSemaphore mcpSessionNotification; /**< Semaphore to synchronize incoming notifications for the MCP session */ 92 * exit function before waiting for any notifications from NWD then the daemon 98 * This queue holds notifications received between the time the daemon 102 std::queue<notification_t> notifications; /**< Notifications queue for open session notification */ member in class:MobiCoreDevice
|
/external/chromium/chrome/browser/task_manager/ |
task_manager_browsertest.cc | 14 #include "chrome/browser/notifications/desktop_notification_service.h" 15 #include "chrome/browser/notifications/notification.h" 16 #include "chrome/browser/notifications/notification_test_util.h" 17 #include "chrome/browser/notifications/notification_ui_manager.h" 317 NotificationUIManager* notifications = local 331 notifications->Add(n1, browser()->profile()); 333 notifications->Add(n2, browser()->profile()); 335 notifications->CancelById(n1.notification_id()); 337 notifications->CancelById(n2.notification_id());
|
/external/chromium_org/chrome/browser/extensions/api/notifications/ |
notifications_apitest.cc | 10 #include "chrome/browser/extensions/api/notifications/notifications_api.h" 48 // notifications ID, which we'll use in later parts of this test. 107 // notifications, and confirm it remains at one at this point. 452 ASSERT_TRUE(RunExtensionTest("notifications/api/events")) << message_; 456 ASSERT_TRUE(RunExtensionTest("notifications/api/csp")) << message_; 470 LoadExtensionAndWait("notifications/api/by_user"); 719 const message_center::NotificationList::Notifications& notifications = local 721 ASSERT_EQ(1u, notifications.size()); 722 message_center::Notification* notification = *(notifications.begin()) [all...] |
/external/chromium_org/ui/message_center/views/ |
message_center_bubble.cc | 117 const NotificationList::Notifications& notifications = local 119 message_center_view_->SetNotifications(notifications);
|
message_center_view_unittest.cc | 148 NotificationList::Notifications notifications; local 149 notifications.insert(¬ification); 154 message_center_view_->SetNotifications(notifications);
|
/external/chromium/chrome/browser/accessibility/ |
browser_accessibility_win_unittest.cc | 199 std::vector<ViewHostMsg_AccessibilityNotification_Params> notifications; local 200 notifications.push_back(param); 201 manager->OnAccessibilityNotifications(notifications); 271 std::vector<ViewHostMsg_AccessibilityNotification_Params> notifications; local 272 notifications.push_back(param); 273 manager->OnAccessibilityNotifications(notifications);
|
/external/chromium_org/ash/system/chromeos/ |
tray_display_unittest.cc | 154 const message_center::NotificationList::Notifications notifications = local 156 for (message_center::NotificationList::Notifications::const_iterator iter = 157 notifications.begin(); iter != notifications.end(); ++iter) {
|
/external/chromium_org/chrome/browser/ui/views/message_center/ |
message_center_widget_delegate.cc | 164 const NotificationList::Notifications& notifications = local 166 SetNotifications(notifications);
|
/external/chromium_org/ui/message_center/ |
notification_list.cc | 73 for (Notifications::iterator iter = notifications_.begin(); 93 Notifications::iterator iter = GetNotification(old_id); 122 NotificationList::Notifications NotificationList::GetNotificationsByNotifierId( 124 Notifications notifications; local 125 for (Notifications::iterator iter = notifications_.begin(); 128 notifications.insert(*iter); 130 return notifications; 135 Notifications::iterator iter = GetNotification(notification_id); 144 Notifications::iterator iter = GetNotification(notification_id) 304 Notifications notifications = GetVisibleNotifications(blockers); local [all...] |
message_center_impl_unittest.cc | 153 const NotificationList::Notifications& notifications, 155 for (NotificationList::Notifications::const_iterator iter = 156 notifications.begin(); iter != notifications.end(); ++iter) { 349 // Block all notifications. All popups are gone and message center should be 410 // Unblock notifications, the id1 should appear as a popup. 490 // TotalNotificationBlocker suppresses showing notifications even from the list. 522 NotificationList::Notifications notifications local 740 const NotificationList::Notifications& notifications = local [all...] |
notification_list_unittest.cc | 86 NotificationList::Notifications::iterator iter = 110 bool IsInNotifications(const NotificationList::Notifications& notifications, 112 for (NotificationList::Notifications::const_iterator iter = 113 notifications.begin(); iter != notifications.end(); ++iter) { 198 const NotificationList::Notifications notifications = local 200 EXPECT_EQ(replaced, (*notifications.begin())->id()); 201 EXPECT_EQ(UTF8ToUTF16("newtitle"), (*notifications.begin())->title()) 360 NotificationList::Notifications notifications = local 432 const NotificationList::Notifications notifications = local 559 const NotificationList::Notifications notifications = local 592 NotificationList::Notifications notifications = local [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
BaseStatusBar.java | 109 // all notifications 186 // Also, notifications can be launched from the lock screen, 241 ArrayList<StatusBarNotification> notifications = new ArrayList<StatusBarNotification>(); local 247 mBarService.registerStatusBar(mCommandQueue, iconList, notificationKeys, notifications, 275 if (N == notifications.size()) { 277 addNotification(notificationKeys.get(i), notifications.get(i)); 281 + " notifications=" + notifications.size()); 731 // Also, notifications can be launched from the lock screen, 766 * This was added last-minute and is inconsistent with the way the rest of the notifications [all...] |
/external/chromium_org/chrome/browser/history/android/ |
android_provider_backend.cc | 161 HistoryNotifications notifications; local 166 ¬ifications)) 170 BroadcastNotifications(notifications); 176 HistoryNotifications notifications; local 180 AndroidURLID id = InsertHistoryAndBookmark(values, ¬ifications, true); 183 BroadcastNotifications(notifications); 193 HistoryNotifications notifications; local 198 ¬ifications)) 202 BroadcastNotifications(notifications); 210 HistoryNotifications notifications; local [all...] |
/external/chromium_org/chrome/browser/media_galleries/ |
media_galleries_preferences_unittest.cc | 47 int notifications() const { return notifications_;} function in class:__anon5228::MockGalleryChangeObserver 759 EXPECT_EQ(1, observer1.notifications()); 775 EXPECT_EQ(2, observer1.notifications()); 776 EXPECT_EQ(1, observer2.notifications()); 786 EXPECT_EQ(2, observer1.notifications()); 787 EXPECT_EQ(2, observer2.notifications()); 794 EXPECT_EQ(2, observer1.notifications()); 795 EXPECT_EQ(3, observer2.notifications()); [all...] |
/external/chromium_org/chrome/browser/notifications/ |
notification_browsertest.cc | 21 #include "chrome/browser/notifications/balloon.h" 22 #include "chrome/browser/notifications/balloon_collection.h" 23 #include "chrome/browser/notifications/balloon_host.h" 24 #include "chrome/browser/notifications/balloon_notification_ui_manager.h" 25 #include "chrome/browser/notifications/desktop_notification_service.h" 26 #include "chrome/browser/notifications/desktop_notification_service_factory.h" 27 #include "chrome/browser/notifications/notification.h" 56 const char kExpectedIconUrl[] = "/notifications/no_such_file.png"; 242 "/notifications/notification_tester.html"); 488 "/notifications/notifications_request_function.html")) 531 message_center::NotificationList::Notifications notifications = local 558 message_center::NotificationList::Notifications notifications = local 740 message_center::NotificationList::Notifications notifications = local 937 message_center::NotificationList::Notifications notifications = local [all...] |
/external/chromium_org/content/browser/frame_host/ |
render_frame_host_manager_unittest.cc | 586 TestNotificationTracker notifications; local 592 notifications.ListenFor(NOTIFICATION_RENDER_VIEW_HOST_CHANGED, 657 notifications.Reset(); 670 notifications.Check1AndReset(NOTIFICATION_RENDER_VIEW_HOST_CHANGED)); 678 TestNotificationTracker notifications; local 684 notifications.ListenFor(NOTIFICATION_RENDER_VIEW_HOST_CHANGED, 707 notifications.Check1AndReset(NOTIFICATION_RENDER_VIEW_HOST_CHANGED)); 708 notifications.Reset(); 1185 TestNotificationTracker notifications; local 1247 TestNotificationTracker notifications; local [all...] |
navigation_controller_impl_unittest.cc | 270 TestNotificationTracker notifications; local 271 RegisterForAllNavNotifications(¬ifications, &controller); 337 TestNotificationTracker notifications; local 338 RegisterForAllNavNotifications(¬ifications, &controller); 345 // notifications we're listening for. 346 EXPECT_EQ(0U, notifications.size()); 363 // We should have gotten no notifications from the preceeding checks. 364 EXPECT_EQ(0U, notifications.size()); 435 TestNotificationTracker notifications; local 436 RegisterForAllNavNotifications(¬ifications, &controller) 573 TestNotificationTracker notifications; local 615 TestNotificationTracker notifications; local 650 TestNotificationTracker notifications; local 688 TestNotificationTracker notifications; local 718 TestNotificationTracker notifications; local 755 TestNotificationTracker notifications; local 799 TestNotificationTracker notifications; local 854 TestNotificationTracker notifications; local 897 TestNotificationTracker notifications; local 937 TestNotificationTracker notifications; local 990 TestNotificationTracker notifications; local 1064 TestNotificationTracker notifications; local 1117 TestNotificationTracker notifications; local 1169 TestNotificationTracker notifications; local 1231 TestNotificationTracker notifications; local 1341 TestNotificationTracker notifications; local 1399 TestNotificationTracker notifications; local 1447 TestNotificationTracker notifications; local 1528 TestNotificationTracker notifications; local 1592 TestNotificationTracker notifications; local 1641 TestNotificationTracker notifications; local 1697 TestNotificationTracker notifications; local 1753 TestNotificationTracker notifications; local 1800 TestNotificationTracker notifications; local 1840 TestNotificationTracker notifications; local 1863 TestNotificationTracker notifications; local 1893 TestNotificationTracker notifications; local 1957 TestNotificationTracker notifications; local 1983 TestNotificationTracker notifications; local 2085 TestNotificationTracker notifications; local 2123 TestNotificationTracker notifications; local 2533 TestNotificationTracker notifications; local 2779 TestNotificationTracker notifications; local 2821 TestNotificationTracker notifications; local 2857 TestNotificationTracker notifications; local 3770 TestNotificationTracker notifications; local 3798 TestNotificationTracker notifications; local 3838 TestNotificationTracker notifications; local [all...] |
/external/chromium_org/chrome/browser/chromeos/settings/ |
device_settings_provider.cc | 797 // Collect all notifications but send them only after we have swapped the 799 std::vector<std::string> notifications; local 806 notifications.push_back(iter->first); 813 notifications.push_back(iter->first); 818 for (size_t i = 0; i < notifications.size(); ++i) 819 NotifyObservers(notifications[i]); [all...] |
/external/chromium_org/chrome/browser/ |
pepper_flash_settings_manager.cc | 167 const std::vector<std::pair<uint32, RequestType> >& notifications); 664 std::vector<std::pair<uint32, RequestType> > notifications; local 667 notifications.push_back(std::make_pair(iter->id, iter->type)); 670 notifications.insert(notifications.end(), pending_responses_.begin(), 676 base::Bind(&Core::NotifyError, this, notifications)); 747 const std::vector<std::pair<uint32, RequestType> >& notifications) { 752 notifications.begin(); iter != notifications.end(); ++iter) { [all...] |