HomeSort by relevance Sort by last modified time
    Searched refs:closure (Results 76 - 100 of 365) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/media/filters/
vpx_video_decoder.h 39 virtual void Reset(const base::Closure& closure) OVERRIDE;
40 virtual void Stop(const base::Closure& closure) OVERRIDE;
76 base::Closure reset_cb_;
fake_video_decoder.cc 83 void FakeVideoDecoder::Reset(const base::Closure& closure) {
86 reset_cb_.SetCallback(BindToCurrentLoop(closure));
95 void FakeVideoDecoder::Stop(const base::Closure& closure) {
97 stop_cb_.SetCallback(BindToCurrentLoop(closure));
  /external/chromium_org/ppapi/proxy/
ppb_message_loop_proxy.h 50 base::Closure closure; member in struct:ppapi::proxy::MessageLoopResource::TaskInfo
59 // NOTE: The given closure will be run *WITHOUT* acquiring the Proxy lock.
63 const base::Closure& closure,
  /external/chromium_org/tools/gn/
item_node.h 63 // This closure will be executed when the item is resolved and it has the
65 void set_resolved_closure(const base::Closure& closure) {
66 resolved_closure_ = closure;
144 base::Closure resolved_closure_;
  /external/chromium_org/ui/base/test/
ui_controls_aura.cc 38 const base::Closure& task) {
53 const base::Closure& task) {
67 const base::Closure& task) {
79 void RunClosureAfterAllPendingUIEvents(const base::Closure& closure) {
80 instance_->RunClosureAfterAllPendingUIEvents(closure);
ui_controls_win.cc 29 base::Closure());
38 const base::Closure& task) {
46 return internal::SendMouseMoveImpl(x, y, base::Closure());
49 bool SendMouseMoveNotifyWhenDone(long x, long y, const base::Closure& task) {
56 return internal::SendMouseEventsImpl(type, state, base::Closure());
60 const base::Closure& task) {
67 return internal::SendMouseEventsImpl(type, UP | DOWN, base::Closure());
70 void RunClosureAfterAllPendingUIEvents(const base::Closure& closure) {
71 // On windows, posting UI events is synchronous so just post the closure
    [all...]
ui_controls.h 22 // Many of the functions in this class include a variant that takes a Closure.
23 // The version that takes a Closure waits until the generated event is
24 // processed. Once the generated event is processed the Closure is Run (and
26 // the correct type (key down, mouse click, etc.) will trigger the Closure to be
59 const base::Closure& task);
65 const base::Closure& task);
85 const base::Closure& task);
91 // Runs |closure| after processing all pending ui events.
92 void RunClosureAfterAllPendingUIEvents(const base::Closure& closure);
    [all...]
ui_controls_aura.h 33 const base::Closure& task) = 0;
39 const base::Closure& task) = 0;
46 const base::Closure& task) = 0;
50 // Runs |closure| after processing all pending ui events.
52 const base::Closure& closure) = 0;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xthreads.h 50 #define xthread_fork(func,closure) cthread_fork(func,closure)
79 #define xthread_fork(func,closure) thr_create(NULL,0,func,closure,THR_NEW_LWP|THR_DETACHED,NULL)
115 #define xthread_fork(func,closure) { \
117 CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)func, (LPVOID)closure, 0, \
175 #define xthread_fork(func,closure) { pthread_t _tmpxthr; \
176 pthread_create(&_tmpxthr,NULL,func,closure); }
205 #define xthread_fork(func,closure) { thr_t _tmpxthr; \
207 thr_create(&_tmpxthr,NULL,func,closure); }
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xthreads.h 50 #define xthread_fork(func,closure) cthread_fork(func,closure)
79 #define xthread_fork(func,closure) thr_create(NULL,0,func,closure,THR_NEW_LWP|THR_DETACHED,NULL)
115 #define xthread_fork(func,closure) { \
117 CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)func, (LPVOID)closure, 0, \
175 #define xthread_fork(func,closure) { pthread_t _tmpxthr; \
176 pthread_create(&_tmpxthr,NULL,func,closure); }
205 #define xthread_fork(func,closure) { thr_t _tmpxthr; \
207 thr_create(&_tmpxthr,NULL,func,closure); }
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xthreads.h 50 #define xthread_fork(func,closure) cthread_fork(func,closure)
79 #define xthread_fork(func,closure) thr_create(NULL,0,func,closure,THR_NEW_LWP|THR_DETACHED,NULL)
115 #define xthread_fork(func,closure) { \
117 CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)func, (LPVOID)closure, 0, \
175 #define xthread_fork(func,closure) { pthread_t _tmpxthr; \
176 pthread_create(&_tmpxthr,NULL,func,closure); }
205 #define xthread_fork(func,closure) { thr_t _tmpxthr; \
207 thr_create(&_tmpxthr,NULL,func,closure); }
    [all...]
  /external/chromium_org/chrome/common/
cancelable_task_tracker.cc 20 using base::Closure;
26 void RunIfNotCanceled(const CancellationFlag* flag, const Closure& task) {
32 const Closure& task,
33 const Closure& untrack) {
43 void RunAndDeleteFlag(const Closure& closure, const CancellationFlag* flag) {
44 closure.Run();
48 void RunOrPostToTaskRunner(TaskRunner* task_runner, const Closure& closure) {
50 closure.Run()
    [all...]
  /external/libffi/src/powerpc/
ffi_darwin.c 531 ffi_prep_closure_loc (ffi_closure* closure,
547 tramp = (unsigned int *) &closure->tramp[0];
559 closure->cif = cif;
560 closure->fun = fun;
561 closure->user_data = user_data;
570 tramp_aix = (struct ffi_aix_trampoline_struct *) (closure->tramp);
578 closure->cif = cif;
579 closure->fun = fun;
580 closure->user_data = user_data;
624 entry, r11 holds the address of the closure
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/parser/
XMLDocumentParser.cpp     [all...]
  /external/libffi/src/
prep_cif.c 166 ffi_prep_closure (ffi_closure* closure,
171 return ffi_prep_closure_loc (closure, cif, fun, user_data, closure);
  /external/chromium_org/chrome/browser/search_engines/
search_provider_install_data.h 57 void CallWhenLoaded(const base::Closure& closure);
87 std::vector<base::Closure> closure_queue_;
  /external/chromium_org/v8/src/
optimizing-compiler-thread.cc 114 optimizing_compiler->info()->closure()->MarkForInstallingRecompiledCode();
129 Handle<JSFunction> function = info->closure();
143 Handle<JSFunction> function = info->closure();
207 optimizing_compiler->info()->closure()->MarkInRecompileQueue();
  /external/chromium_org/v8/test/mjsunit/compiler/
inline-construct.js 32 function TestInlinedConstructor(constructor, closure) {
38 result = closure(constructor, 11, noDeopt, counter);
42 result = closure(constructor, 23, noDeopt, counter);
46 %OptimizeFunctionOnNextCall(closure);
47 result = closure(constructor, 42, noDeopt, counter);
51 result = closure(constructor, 127, forceDeopt, counter);
55 %DeoptimizeFunction(closure);
56 %ClearFunctionTypeFeedback(closure);
  /external/openfst/src/bin/
fstclosure.cc 20 // Creates the Kleene closure of an FST.
23 #include <fst/script/closure.h>
32 string usage = "Creates the Kleene closure of an FST.\n\n Usage: ";
52 fst::script::Closure(fst, closure_type);
  /external/valgrind/main/drd/
drd_load_store.h 42 IRSB* DRD_(instrument)(VgCallbackClosure* const closure,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
af_vfs.h 42 void *closure; member in struct:_AFvirtualfile
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
af_vfs.h 42 void *closure; member in struct:_AFvirtualfile
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
seq_oss.h 52 int (*open)(struct snd_seq_oss_arg *p, void *closure);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
af_vfs.h 42 void *closure; member in struct:_AFvirtualfile
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
seq_oss.h 52 int (*open)(struct snd_seq_oss_arg *p, void *closure);

Completed in 1197 milliseconds

1 2 34 5 6 7 8 91011>>