HomeSort by relevance Sort by last modified time
    Searched refs:Closure (Results 1 - 25 of 1283) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/base/
critical_closure.h 12 // Returns a closure that will continue to run for a period of time when the
22 // Note new closures might be posted in this closure. If the new closures need
26 base::Closure MakeCriticalClosure(const base::Closure& closure);
28 inline base::Closure MakeCriticalClosure(const base::Closure& closure) {
31 return closure;
callback_forward.h 13 typedef Callback<void(void)> Closure;
bind_helpers.cc 14 ScopedClosureRunner::ScopedClosureRunner(const Closure& closure)
15 : closure_(closure) {
23 Closure ScopedClosureRunner::Release() {
24 Closure result = closure_;
task_runner.h 23 // Closure objects). The TaskRunner interface provides a way of
67 const Closure& task);
75 const Closure& task,
92 // to use WeakPtr<> in the |reply| Closure so that the reply
128 const Closure& task,
129 const Closure& reply);
  /art/runtime/
closure.h 24 class Closure {
26 virtual ~Closure() { }
  /external/chromium_org/base/threading/
post_task_and_reply_impl.h 31 const Closure& task,
32 const Closure& reply);
36 const Closure& task) = 0;
worker_pool.h 37 const base::Closure& task, bool task_is_slow);
43 const Closure& task,
44 const Closure& reply,
post_task_and_reply_impl.cc 23 // invoking the Closure destructor on the wrong thread.
27 const Closure& task, const Closure& reply)
65 Closure reply_;
66 Closure task_;
75 const Closure& task,
76 const Closure& reply) {
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Task.h 41 explicit Task(const Closure& closure)
42 : m_closure(closure)
52 Closure m_closure;
  /external/chromium_org/chrome/browser/metrics/variations/
variations_request_scheduler.h 33 static VariationsRequestScheduler* Create(const base::Closure& task,
37 // |task| is the closure to call when the scheduler deems ready.
38 explicit VariationsRequestScheduler(const base::Closure& task);
41 base::Closure task() const;
48 base::Closure task_;
  /external/chromium_org/ui/base/test/
ui_controls_internal_win.h 22 const base::Closure& task);
23 bool SendMouseMoveImpl(long x, long y, const base::Closure& task);
26 const base::Closure& task);
27 void RunClosureAfterAllPendingUITasksImpl(const base::Closure& task);
  /external/chromium_org/media/base/
audio_renderer.h 49 const base::Closure& underflow_cb,
51 const base::Closure& ended_cb,
52 const base::Closure& disabled_cb,
57 virtual void Play(const base::Closure& callback) = 0;
61 virtual void Pause(const base::Closure& callback) = 0;
64 virtual void Flush(const base::Closure& callback) = 0;
75 virtual void Stop(const base::Closure& callback) = 0;
  /external/chromium/chrome/browser/sync/notifier/
chrome_system_resources.h 40 invalidation::Closure* task);
42 virtual void ScheduleImmediately(invalidation::Closure* task);
44 virtual void ScheduleOnListenerThread(invalidation::Closure* task);
59 std::set<invalidation::Closure*> posted_tasks_;
68 Task* MakeTaskToPost(invalidation::Closure* task);
71 void RunPostedTask(invalidation::Closure* task);
  /external/openfst/src/include/fst/script/
closure.h 22 #include <fst/closure.h>
30 void Closure(ClosureArgs *args) {
33 Closure(fst, args->arg2);
36 void Closure(MutableFstClass *ofst, ClosureType closure_type);
  /external/chromium_org/ash/system/chromeos/screen_security/
screen_capture_observer.h 17 const base::Closure& stop_callback,
screen_share_observer.h 17 const base::Closure& stop_callback,
  /external/chromium_org/cc/resources/
sync_point_helper.cc 14 explicit SignalSyncPointCallbackClass(const base::Closure& closure)
15 : closure_(closure) {}
23 base::Closure closure_;
29 const base::Closure& closure) {
31 new SignalSyncPointCallbackClass(closure);
40 const base::Closure& closure) {
42 new SignalSyncPointCallbackClass(closure);
    [all...]
sync_point_helper.h 17 // Requests a callback to |closure| when the |sync_point| is reached by the
25 const base::Closure& closure);
27 // Requests a callback to |closure| when the results for |query| is available.
34 const base::Closure& closure);
  /external/chromium_org/chrome/browser/google/
google_util_chromeos.h 25 void SetBrandFromFile(const base::Closure& callback);
  /external/chromium_org/remoting/base/
auto_thread_task_runner.h 25 const base::Closure& stop_task);
30 const base::Closure& task,
34 const base::Closure& task,
42 base::Closure stop_task_;
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserThread.h 43 void postTask(const Closure&);
  /external/openfst/src/script/
closure.cc 19 #include <fst/script/closure.h>
24 void Closure(MutableFstClass *fst, ClosureType closure_type) {
27 Apply<Operation<ClosureArgs> >("Closure", fst->ArcType(), &args);
30 REGISTER_FST_OPERATION(Closure, StdArc, ClosureArgs);
31 REGISTER_FST_OPERATION(Closure, LogArc, ClosureArgs);
32 REGISTER_FST_OPERATION(Closure, Log64Arc, ClosureArgs);
  /external/chromium_org/base/test/
null_task_runner.cc 15 const base::Closure& task,
22 const base::Closure& task,
null_task_runner.h 19 const base::Closure& task,
23 const base::Closure& task,
  /external/chromium_org/chrome/browser/chromeos/
camera_detector.h 30 static void StartPresenceCheck(const base::Closure& check_done);
34 static void OnPresenceCheckDone(const base::Closure& callback, bool present);

Completed in 1085 milliseconds

1 2 3 4 5 6 7 8 91011>>