Searched defs:notifiers (Results 1 - 10 of 10) sorted by relevance

/external/qemu/include/qemu/
H A Dnotify.h29 QLIST_HEAD(, Notifier) notifiers; member in struct:NotifierList
33 { QLIST_HEAD_INITIALIZER((head).notifiers) }
56 QLIST_HEAD(, NotifierWithReturn) notifiers; member in struct:NotifierWithReturnList
60 { QLIST_HEAD_INITIALIZER((head).notifiers) }
/external/chromium_org/ui/message_center/
H A Dfake_notifier_settings_provider.h14 // notifiers and records which callbacks were called. For use in tests.
19 const std::vector<Notifier*>& notifiers);
28 virtual void GetNotifierList(std::vector<Notifier*>* notifiers) OVERRIDE;
45 void AddGroup(NotifierGroup* group, const std::vector<Notifier*>& notifiers);
55 std::vector<Notifier*> notifiers; member in struct:message_center::FakeNotifierSettingsProvider::NotifierGroupItem
H A Dfake_notifier_settings_provider.cc24 const std::vector<Notifier*>& notifiers)
33 item.notifiers = notifiers;
67 std::vector<Notifier*>* notifiers) {
68 notifiers->clear();
69 for (size_t i = 0; i < items_[active_item_index_].notifiers.size(); ++i)
70 notifiers->push_back(items_[active_item_index_].notifiers[i]);
108 NotifierGroup* group, const std::vector<Notifier*>& notifiers) {
111 item.notifiers
23 FakeNotifierSettingsProvider( const std::vector<Notifier*>& notifiers) argument
66 GetNotifierList( std::vector<Notifier*>* notifiers) argument
107 AddGroup( NotifierGroup* group, const std::vector<Notifier*>& notifiers) argument
[all...]
/external/chromium_org/ui/message_center/views/
H A Dnotifier_settings_view_unittest.cc26 TestingNotifierSettingsProvider(const std::vector<Notifier*>& notifiers, argument
28 : FakeNotifierSettingsProvider(notifiers),
83 std::vector<Notifier*> notifiers; local
84 notifiers.push_back(NewNotifier("id", "title", /*enabled=*/true));
85 notifiers.push_back(NewNotifier("id2", "other title", /*enabled=*/false));
87 notifiers, NotifierId(NotifierId::APPLICATION, "id")));
H A Dnotifier_settings_view.cc507 std::vector<Notifier*> notifiers; local
509 provider_->GetNotifierList(&notifiers);
511 UpdateContentsView(notifiers);
537 std::vector<Notifier*> notifiers; local
539 provider_->GetNotifierList(&notifiers);
541 UpdateContentsView(notifiers);
548 const std::vector<Notifier*>& notifiers) {
610 size_t notifier_count = notifiers.size();
612 NotifierButton* button = new NotifierButton(provider_, notifiers[i], this);
547 UpdateContentsView( const std::vector<Notifier*>& notifiers) argument
/external/chromium_org/chrome/browser/apps/
H A Dephemeral_app_browsertest.cc63 const NotifierList& notifiers) {
64 for (NotifierList::const_iterator it = notifiers.begin();
65 it != notifiers.end(); ++it) {
471 // of notifiers to show in the UI.
472 NotifierList notifiers; local
473 STLElementDeleter<NotifierList> notifier_deleter(&notifiers);
475 settings_provider->GetNotifierList(&notifiers);
476 EXPECT_TRUE(IsNotifierInList(notifier_id, notifiers));
477 STLDeleteElements(&notifiers);
482 // Inactive ephemeral apps should not be included in the list of notifiers t
62 IsNotifierInList(const message_center::NotifierId& notifier_id, const NotifierList& notifiers) argument
[all...]
/external/chromium_org/chrome/browser/notifications/
H A Dmessage_center_settings_controller.cc201 std::vector<Notifier*>* notifiers) {
202 DCHECK(notifiers);
244 notifiers->push_back(new Notifier(
257 sync_notifier_service->GetSyncedNotificationServices(notifiers);
260 std::sort(notifiers->begin(), notifiers->end(), *comparator);
262 std::sort(notifiers->begin(), notifiers->end(), SimpleCompareNotifiers);
266 int app_count = notifiers->size();
286 notifiers
200 GetNotifierList( std::vector<Notifier*>* notifiers) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DGeolocation.cpp467 void Geolocation::sendError(GeoNotifierVector& notifiers, PositionError* error) argument
469 GeoNotifierVector::const_iterator end = notifiers.end();
470 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it)
474 void Geolocation::sendPosition(GeoNotifierVector& notifiers, Geoposition* position) argument
476 GeoNotifierVector::const_iterator end = notifiers.end();
477 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it)
481 void Geolocation::stopTimer(GeoNotifierVector& notifiers) argument
483 GeoNotifierVector::const_iterator end = notifiers.end();
484 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it)
510 void Geolocation::cancelRequests(GeoNotifierVector& notifiers) argument
526 extractNotifiersWithCachedPosition(GeoNotifierVector& notifiers, GeoNotifierVector* cached) argument
[all...]
/external/chromium_org/chrome/browser/notifications/sync_notifier/
H A Dchrome_notifier_service.cc367 std::vector<message_center::Notifier*>* notifiers) {
397 // |notifiers| takes ownership of |app_info_notifier|.
398 notifiers->push_back(app_info_notifier);
366 GetSyncedNotificationServices( std::vector<message_center::Notifier*>* notifiers) argument
/external/chromium_org/net/quic/
H A Dquic_protocol.h1033 std::set<QuicAckNotifier*> notifiers; member in struct:net::SerializedPacket

Completed in 907 milliseconds