Searched refs:notifier (Results 1 - 25 of 217) sorted by relevance

123456789

/external/chromium_org/jingle/notifier/base/
H A Dgaia_constants.cc5 #include "jingle/notifier/base/gaia_constants.h"
7 namespace notifier { namespace
12 } // namespace notifier
H A Dconst_communicator.h8 namespace notifier { namespace
11 } // namespace notifier
H A Dgaia_constants.h8 namespace notifier { namespace
12 } // namespace notifier
H A Dnotifier_options.cc5 #include "jingle/notifier/base/notifier_options.h"
7 #include "jingle/notifier/base/gaia_constants.h"
9 namespace notifier { namespace
20 } // namespace notifier
H A Dnotification_method.h10 namespace notifier { namespace
29 } // namespace notifier
/external/chromium_org/jingle/notifier/listener/
H A Dnotification_constants.cc5 #include "jingle/notifier/listener/notification_constants.h"
7 namespace notifier { namespace
11 } // namespace notifier
H A Dnotification_constants.h8 namespace notifier { namespace
12 } // namespace notifier
H A Dpush_client_observer.cc5 #include "jingle/notifier/listener/push_client_observer.h"
7 namespace notifier { namespace
13 } // namespace notifier
/external/chromium_org/components/invalidation/
H A Dnotifier_reason_util.cc12 notifier::NotificationsDisabledReason reason) {
14 case notifier::NO_NOTIFICATION_ERROR:
16 case notifier::TRANSIENT_NOTIFICATION_ERROR:
18 case notifier::NOTIFICATION_CREDENTIALS_REJECTED:
26 notifier::NotificationsDisabledReason ToNotifierReasonForTest(
30 return notifier::TRANSIENT_NOTIFICATION_ERROR;
32 return notifier::NOTIFICATION_CREDENTIALS_REJECTED;
37 return notifier::TRANSIENT_NOTIFICATION_ERROR;
H A Dnotifier_reason_util.h9 #include "jingle/notifier/listener/push_client_observer.h"
14 notifier::NotificationsDisabledReason reason);
17 notifier::NotificationsDisabledReason
H A Dinvalidation_service_util.h8 #include "jingle/notifier/base/notifier_options.h"
16 // Parses the given command line for notifier options.
17 notifier::NotifierOptions ParseNotifierOptions(
/external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/
H A DInvalidationClientNameGenerator.java5 package org.chromium.sync.notifier;
/external/qemu/util/
H A Dnotify.c24 void notifier_list_add(NotifierList *list, Notifier *notifier) argument
26 QLIST_INSERT_HEAD(&list->notifiers, notifier, node);
29 void notifier_remove(Notifier *notifier) argument
31 QLIST_REMOVE(notifier, node);
36 Notifier *notifier, *next; local
38 QLIST_FOREACH_SAFE(notifier, &list->notifiers, node, next) {
39 notifier->notify(notifier, data);
49 NotifierWithReturn *notifier)
51 QLIST_INSERT_HEAD(&list->notifiers, notifier, nod
48 notifier_with_return_list_add(NotifierWithReturnList *list, NotifierWithReturn *notifier) argument
54 notifier_with_return_remove(NotifierWithReturn *notifier) argument
61 NotifierWithReturn *notifier, *next; local
[all...]
/external/chromium_org/base/prefs/
H A Dpref_notifier_impl_unittest.cc100 MockPrefNotifier notifier(&pref_service_);
101 EXPECT_CALL(notifier, FireObservers(kChangedPref)).Times(1);
102 notifier.OnPreferenceChanged(kChangedPref);
106 MockPrefNotifier notifier(&pref_service_);
108 notifier.AddInitObserver(
112 notifier.OnInitializationCompleted(true);
119 MockPrefNotifier notifier(&pref_service_);
120 notifier.AddPrefObserver(pref_name, &obs1_);
121 ASSERT_EQ(1u, notifier.CountObserver(pref_name, &obs1_));
122 ASSERT_EQ(0u, notifier
[all...]
/external/mockito/src/org/mockito/internal/runners/util/
H A DFrameworkUsageValidator.java15 private final RunNotifier notifier; field in class:FrameworkUsageValidator
17 public FrameworkUsageValidator(RunNotifier notifier) { argument
18 this.notifier = notifier;
27 notifier.fireTestFailure(new Failure(description, t));
/external/chromium_org/cc/base/
H A Ddelayed_unique_notifier_unittest.cc60 TestNotifier notifier(
71 notifier.SetNow(schedule_time);
72 notifier.Schedule();
83 notifier.Schedule();
95 TestNotifier notifier(
106 notifier.SetNow(schedule_time);
107 notifier.Schedule();
123 base::TimeTicks scheduled_run_time = notifier.Now() + delay;
125 base::TimeTicks() + (scheduled_run_time - notifier.Now());
129 notifier
[all...]
H A Dunique_notifier_unittest.cc34 UniqueNotifier notifier(
41 notifier.Schedule();
48 notifier.Schedule();
53 notifier.Schedule();
/external/qemu/include/qemu/
H A Dnotify.h23 void (*notify)(Notifier *notifier, void *data);
37 void notifier_list_add(NotifierList *list, Notifier *notifier);
39 void notifier_remove(Notifier *notifier);
48 * Return 0 on success (next notifier will be invoked), otherwise
51 int (*notify)(NotifierWithReturn *notifier, void *data);
65 NotifierWithReturn *notifier);
67 void notifier_with_return_remove(NotifierWithReturn *notifier);
/external/chromium_org/chrome/browser/web_resource/
H A Deula_accepted_notifier_unittest.cc36 EulaAcceptedNotifier* notifier() { function in class:EulaAcceptedNotifierTest
54 EXPECT_TRUE(notifier()->IsEulaAccepted());
57 EXPECT_TRUE(notifier()->IsEulaAccepted());
62 EXPECT_FALSE(notifier()->IsEulaAccepted());
65 EXPECT_FALSE(notifier()->IsEulaAccepted());
70 EXPECT_FALSE(notifier()->IsEulaAccepted());
72 EXPECT_TRUE(notifier()->IsEulaAccepted());
75 EXPECT_TRUE(notifier()->IsEulaAccepted());
/external/mockito/src/org/mockito/internal/handler/
H A DMockHandlerFactory.java18 InternalMockHandler notifier = new InvocationNotifierHandler(nullResultGuardian, settings);
20 return notifier;
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DGeolocationWatchers.cpp18 bool GeolocationWatchers::add(int id, GeoNotifier* notifier) argument
21 if (!m_idToNotifierMap.add(id, notifier).isNewEntry)
23 m_notifierToIdMap.set(notifier, id);
46 void GeolocationWatchers::remove(GeoNotifier* notifier) argument
48 NotifierToIdMap::iterator iter = m_notifierToIdMap.find(notifier);
55 bool GeolocationWatchers::contains(GeoNotifier* notifier) const
57 return m_notifierToIdMap.contains(notifier);
H A DGeolocation.cpp145 GeoNotifier* notifier = GeoNotifier::create(this, successCallback, errorCallback, PositionOptions::create(options));
146 startRequest(notifier);
148 m_oneShots.add(notifier);
156 GeoNotifier* notifier = GeoNotifier::create(this, successCallback, errorCallback, PositionOptions::create(options));
157 startRequest(notifier);
163 } while (!m_watchers.add(watchID, notifier));
167 void Geolocation::startRequest(GeoNotifier *notifier) argument
172 notifier->setFatalError(PositionError::create(PositionError::PERMISSION_DENIED, permissionDeniedErrorMessage));
173 else if (haveSuitableCachedPosition(notifier->options()))
174 notifier
187 fatalErrorOccurred(GeoNotifier* notifier) argument
197 requestUsesCachedPosition(GeoNotifier* notifier) argument
225 GeoNotifier* notifier = iter->get(); local
246 requestTimedOut(GeoNotifier* notifier) argument
372 GeoNotifier* notifier = it->get(); local
386 GeoNotifier* notifier = it->get(); local
485 startUpdating(GeoNotifier* notifier) argument
510 GeoNotifier* notifier = iter->get(); local
[all...]
/external/junit/src/org/junit/runner/
H A DRunner.java29 * @param notifier will be notified of events while tests are being run--tests being
32 public abstract void run(RunNotifier notifier); argument
/external/junit/src/org/junit/internal/builders/
H A DIgnoredClassRunner.java18 public void run(RunNotifier notifier) { argument
19 notifier.fireTestIgnored(getDescription());
/external/junit/src/org/junit/internal/runners/
H A DJUnit4ClassRunner.java51 public void run(final RunNotifier notifier) { argument
52 new ClassRoadie(notifier, fTestClass, getDescription(), new Runnable() {
54 runMethods(notifier);
59 protected void runMethods(final RunNotifier notifier) { argument
61 invokeTestMethod(method, notifier);
85 protected void invokeTestMethod(Method method, RunNotifier notifier) { argument
91 testAborted(notifier, description, e.getCause());
94 testAborted(notifier, description, e);
98 new MethodRoadie(test, testMethod, notifier, description).run();
101 private void testAborted(RunNotifier notifier, Descriptio argument
[all...]

Completed in 742 milliseconds

123456789