HomeSort by relevance Sort by last modified time
    Searched refs:notifiers (Results 1 - 17 of 17) sorted by null

  /external/qemu/include/qemu/
notify.h 29 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/
fake_notifier_settings_provider.cc 24 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 = notifiers
    [all...]
fake_notifier_settings_provider.h 14 // 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
notifier_settings.h 37 // The struct to distinguish the notifiers.
83 // The struct to hold the information of notifiers. The information will be
168 // should return notifiers for the specified notifier group.
175 // Collects the current notifier list and fills to |notifiers|. Caller takes
176 // the ownership of the elements of |notifiers|.
177 virtual void GetNotifierList(std::vector<Notifier*>* notifiers) = 0;
  /external/qemu/util/
notify.c 21 QLIST_INIT(&list->notifiers);
26 QLIST_INSERT_HEAD(&list->notifiers, notifier, node);
38 QLIST_FOREACH_SAFE(notifier, &list->notifiers, node, next) {
45 QLIST_INIT(&list->notifiers);
51 QLIST_INSERT_HEAD(&list->notifiers, notifier, node);
64 QLIST_FOREACH_SAFE(notifier, &list->notifiers, node, next) {
  /external/chromium_org/ui/message_center/views/
notifier_settings_view_unittest.cc 26 TestingNotifierSettingsProvider(const std::vector<Notifier*>& notifiers,
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")));
notifier_settings_view.cc 499 std::vector<Notifier*> notifiers; local
501 provider_->GetNotifierList(&notifiers);
503 UpdateContentsView(notifiers);
529 std::vector<Notifier*> notifiers; local
531 provider_->GetNotifierList(&notifiers);
533 UpdateContentsView(notifiers);
540 const std::vector<Notifier*>& notifiers) {
588 size_t notifier_count = notifiers.size();
590 NotifierButton* button = new NotifierButton(provider_, notifiers[i], this);
notifier_settings_view.h 95 // Given a new list of notifiers, updates the view to reflect it.
96 void UpdateContentsView(const std::vector<Notifier*>& notifiers);
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
Geolocation.cpp 308 void Geolocation::sendError(GeoNotifierVector& notifiers, PositionError* error)
310 GeoNotifierVector::const_iterator end = notifiers.end();
311 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it)
315 void Geolocation::sendPosition(GeoNotifierVector& notifiers, Geoposition* position)
317 GeoNotifierVector::const_iterator end = notifiers.end();
318 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it)
322 void Geolocation::stopTimer(GeoNotifierVector& notifiers)
324 GeoNotifierVector::const_iterator end = notifiers.end();
325 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it)
351 void Geolocation::cancelRequests(GeoNotifierVector& notifiers)
    [all...]
Geolocation.h 115 // Removes notifiers that use a cached position from |notifiers| and
117 static void extractNotifiersWithCachedPosition(GeoNotifierVector& notifiers, GeoNotifierVector* cached);
119 // Copies notifiers from |src| vector to |dest| set.
127 // Sets a fatal error on the given notifiers.
130 // Sets a fatal error on all notifiers.
133 // Runs the success callbacks on all notifiers. A position must be available
137 // Sends the given error to all notifiers, unless the error is not fatal and
151 // Processes the notifiers that were waiting for a permission decision. If
163 // Runs the success callbacks for the set of notifiers awaiting a cache
    [all...]
  /external/chromium_org/chrome/browser/notifications/
message_center_settings_controller.cc 200 std::vector<Notifier*>* notifiers) {
201 DCHECK(notifiers);
236 notifiers->push_back(new Notifier(
243 int app_count = notifiers->size();
264 notifiers->push_back(new Notifier(
293 notifiers->push_back(screenshot_notifier);
297 std::sort(notifiers->begin() + app_count, notifiers->end(), *comparator);
299 std::sort(notifiers->begin() + app_count, notifiers->end()
    [all...]
message_center_settings_controller.h 44 // The class to bridge between the settings UI of notifiers and the preference
71 std::vector<message_center::Notifier*>* notifiers) OVERRIDE;
  /external/chromium_org/chrome/browser/apps/
ephemeral_app_browsertest.cc 77 const NotifierList& notifiers) {
78 for (NotifierList::const_iterator it = notifiers.begin();
79 it != notifiers.end(); ++it) {
738 // of notifiers to show in the UI.
739 NotifierList notifiers; local
740 STLElementDeleter<NotifierList> notifier_deleter(&notifiers);
742 settings_provider->GetNotifierList(&notifiers);
743 EXPECT_TRUE(IsNotifierInList(notifier_id, notifiers));
744 STLDeleteElements(&notifiers);
749 // Inactive ephemeral apps should not be included in the list of notifiers t
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/notification_provider/
notification_provider_api.cc 201 // to change permission levels of web notifiers, because the list of allowed
203 // are able to change permission levels of application type notifiers.
241 // Only application type notifiers have advanced settings.
292 std::vector<linked_ptr<api::notification_provider::Notifier> > notifiers; local
295 api::notification_provider::GetAllNotifiers::Results::Create(notifiers)));
  /external/chromium_org/net/quic/
quic_protocol.h 1049 std::set<QuicAckNotifier*> notifiers; member in struct:net::SerializedPacket
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
maven-model-3.2.1.jar 
  /frameworks/base/docs/html/guide/
guide_toc.cs 273 <li><a href="<?cs var:toroot ?>guide/topics/ui/notifiers/notifications.html">
276 <li><a href="<?cs var:toroot ?>guide/topics/ui/notifiers/toasts.html">

Completed in 521 milliseconds