Searched refs:notify (Results 26 - 50 of 204) sorted by relevance

123456789

/external/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/
H A DTestThread.java67 mThreadReadyLock.notify();
125 lock.notify();
/external/chromium_org/chrome/browser/extensions/api/idle/
H A Didle_manager.cc76 IdleCallback notify) OVERRIDE;
77 virtual void CalculateIdleTime(IdleTimeCallback notify) OVERRIDE;
88 IdleCallback notify) {
89 ::CalculateIdleState(idle_threshold, notify);
92 void DefaultIdleProvider::CalculateIdleTime(IdleTimeCallback notify) { argument
93 ::CalculateIdleTime(notify);
172 void IdleManager::QueryState(int threshold, QueryStateCallback notify) { argument
174 idle_time_provider_->CalculateIdleState(threshold, notify);
87 CalculateIdleState(int idle_threshold, IdleCallback notify) argument
H A Didle_manager.h50 IdleCallback notify) = 0;
51 virtual void CalculateIdleTime(IdleTimeCallback notify) = 0;
89 void QueryState(int threshold, QueryStateCallback notify);
H A Didle_api_unittest.cc47 IdleCallback notify) OVERRIDE;
48 virtual void CalculateIdleTime(IdleTimeCallback notify) OVERRIDE;
68 IdleCallback notify) {
70 notify.Run(IDLE_STATE_LOCKED);
73 notify.Run(IDLE_STATE_IDLE);
75 notify.Run(IDLE_STATE_ACTIVE);
80 void TestIdleProvider::CalculateIdleTime(IdleTimeCallback notify) { argument
81 notify.Run(idle_time_);
67 CalculateIdleState(int idle_threshold, IdleCallback notify) argument
/external/chromium_org/chrome/browser/extensions/
H A Dtest_blacklist.h67 bool notify);
71 void Clear(bool notify);
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dxmpppump.cc34 XmppPump::XmppPump(XmppPumpNotify * notify) { argument
36 notify_ = notify;
H A Dxmpppump.h51 XmppPump(buzz::XmppPumpNotify * notify = NULL);
/external/qemu/util/
H A Dnotify.c17 #include "qemu/notify.h"
39 notifier->notify(notifier, data);
65 ret = notifier->notify(notifier, data);
/external/chromium_org/chrome/browser/chromeos/accessibility/
H A Daccessibility_manager.h47 ash::AccessibilityNotificationVisibility notify);
53 ash::AccessibilityNotificationVisibility notify);
58 ash::AccessibilityNotificationVisibility notify; member in struct:chromeos::AccessibilityStatusEventDetails
129 ash::AccessibilityNotificationVisibility notify);
135 void ToggleSpokenFeedback(ash::AccessibilityNotificationVisibility notify);
/external/chromium_org/ash/
H A Daccessibility_delegate.h32 AccessibilityNotificationVisibility notify) = 0;
H A Dash_touch_exploration_manager_chromeos.h33 AccessibilityNotificationVisibility notify) OVERRIDE;
H A Dash_touch_exploration_manager_chromeos.cc36 AccessibilityNotificationVisibility notify) {
35 OnAccessibilityModeChanged( AccessibilityNotificationVisibility notify) argument
H A Ddefault_accessibility_delegate.cc93 AccessibilityNotificationVisibility notify) {
92 ToggleSpokenFeedback( AccessibilityNotificationVisibility notify) argument
/external/chromium_org/ash/system/chromeos/virtual_keyboard/
H A Dvirtual_keyboard_tray.h42 AccessibilityNotificationVisibility notify) OVERRIDE;
/external/chromium_org/chromeos/audio/
H A Dcras_audio_handler.cc213 void CrasAudioHandler::AddActiveNode(uint64 node_id, bool notify) { argument
224 SwitchToDevice(*device, notify);
228 AddAdditionalActiveNode(node_id, notify);
362 void CrasAudioHandler::SetActiveOutputNode(uint64 node_id, bool notify) { argument
365 if (notify)
369 void CrasAudioHandler::SetActiveInputNode(uint64 node_id, bool notify) { argument
372 if (notify)
719 void CrasAudioHandler::SwitchToDevice(const AudioDevice& device, bool notify) { argument
724 SetActiveInputNode(active_input_node_id_, notify);
729 SetActiveOutputNode(active_output_node_id_, notify);
850 AddAdditionalActiveNode(uint64 node_id, bool notify) argument
878 RemoveActiveNodeInternal(uint64 node_id, bool notify) argument
[all...]
/external/chromium_org/content/child/npapi/
H A Dplugin_instance.cc91 bool notify; local
93 GetNotifyData(notify_id, &notify, &notify_data);
95 resource_id, url, this, notify, notify_data);
198 bool notify; local
200 GetNotifyData(notify_id, &notify, &notify_data);
201 if (!notify) {
385 bool notify; local
387 GetNotifyData(notify_id, &notify, &notify_data);
391 new PluginStringStream(this, url, notify, notify_data);
397 if (notify)
580 RequestURL(const char* url, const char* method, const char* target, const char* buf, unsigned int len, bool notify, void* notify_data) argument
668 GetNotifyData(int notify_id, bool* notify, void** notify_data) argument
[all...]
/external/chromium_org/net/dns/
H A Dnotify_watcher_mac.cc7 #include <notify.h>
/external/chromium_org/third_party/polymer/components-chromium/core-shared-lib/
H A Dcore-shared-lib-extracted.js19 this.async('notify');
22 notify: function() {
103 instance.notify(instance, this.result);
/external/lldb/include/lldb/Target/
H A DThreadList.h53 SetSelectedThreadByID (lldb::tid_t tid, bool notify = false);
56 SetSelectedThreadByIndexID (uint32_t index_id, bool notify = false);
/external/lldb/source/Breakpoint/
H A DBreakpointList.cpp35 BreakpointList::Add (BreakpointSP &bp_sp, bool notify) argument
42 if (notify)
52 BreakpointList::Remove (break_id_t break_id, bool notify) argument
60 if (notify)
82 BreakpointList::RemoveAll (bool notify) argument
87 if (notify)
H A DWatchpointList.cpp34 WatchpointList::Add (const WatchpointSP &wp_sp, bool notify) argument
39 if (notify)
209 WatchpointList::Remove (lldb::watch_id_t watch_id, bool notify) argument
216 if (notify)
280 WatchpointList::RemoveAll (bool notify) argument
283 if (notify)
/external/chromium_org/v8/test/mjsunit/es7/
H A Dobject-observe.js142 assertFalse(notifier.hasOwnProperty('notify'));
144 var notifyDesc = Object.getOwnPropertyDescriptor(notifier.__proto__, 'notify');
148 assertThrows(function() { notifier.notify({}); }, TypeError);
149 assertThrows(function() { notifier.notify({ type: 4 }); }, TypeError);
160 var notify = notifier.notify; variable
161 assertThrows(function() { notify.call(undefined, { type: 'a' }); }, TypeError);
162 assertThrows(function() { notify.call(null, { type: 'a' }); }, TypeError);
163 assertThrows(function() { notify.call(5, { type: 'a' }); }, TypeError);
164 assertThrows(function() { notify
[all...]
/external/chromium_org/chrome/browser/extensions/api/content_settings/
H A Dcontent_settings_store.cc140 bool notify = false; local
147 notify = !i->second->settings.empty();
154 if (notify)
162 bool notify = false; local
169 notify = !i->second->settings.empty();
175 if (notify)
229 bool notify = false; local
238 notify = !map->empty();
241 if (notify) {
/external/chromium_org/third_party/webrtc/base/
H A Dhttpbase.h99 void notify(IHttpNotify* notify) { notify_ = notify; } argument
/external/chromium_org/ash/system/
H A Dtray_accessibility.h39 AccessibilityNotificationVisibility notify) = 0;
127 AccessibilityNotificationVisibility notify) OVERRIDE;

Completed in 1213 milliseconds

123456789