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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/media/filters/
video_frame_stream.h 65 // fires any existing pending read callback and calls |closure| on completion.
66 // Note that |closure| is always called asynchronously. This method should
69 void Reset(const base::Closure& closure);
72 // callback and calls |closure| on completion. Note that |closure| is always
76 void Stop(const base::Closure& closure);
147 base::Closure reset_cb_;
148 base::Closure stop_cb_
    [all...]
  /external/chromium_org/ui/aura/test/
ui_controls_factory_aurawin.cc 41 window, key, control, shift, alt, base::Closure());
49 const base::Closure& task) {
56 return SendMouseMoveImpl(point.x(), point.y(), base::Closure());
60 const base::Closure& task) {
65 return SendMouseEventsImpl(type, state, base::Closure());
69 const base::Closure& task) {
75 virtual void RunClosureAfterAllPendingUIEvents(const base::Closure& closure) {
76 // On windows, posting UI events is synchronous so just post the closure.
77 base::MessageLoopForUI::current()->PostTask(FROM_HERE, closure);
    [all...]
  /external/chromium_org/ui/snapshot/
snapshot_gtk.cc 16 cairo_status_t SnapshotCallback(void* closure,
20 static_cast<std::vector<unsigned char>*>(closure);
  /external/chromium_org/third_party/libxml/src/
trio.h 92 int trio_cprintf TRIO_PROTO((trio_outstream_t stream, trio_pointer_t closure,
94 int trio_vcprintf TRIO_PROTO((trio_outstream_t stream, trio_pointer_t closure,
96 int trio_cprintfv TRIO_PROTO((trio_outstream_t stream, trio_pointer_t closure,
134 int trio_cscanf TRIO_PROTO((trio_instream_t stream, trio_pointer_t closure,
136 int trio_vcscanf TRIO_PROTO((trio_instream_t stream, trio_pointer_t closure,
138 int trio_cscanfv TRIO_PROTO((trio_instream_t stream, trio_pointer_t closure,
  /external/chromium_org/third_party/libxslt/libxslt/
trio.h 92 int trio_cprintf TRIO_PROTO((trio_outstream_t stream, trio_pointer_t closure,
94 int trio_vcprintf TRIO_PROTO((trio_outstream_t stream, trio_pointer_t closure,
96 int trio_cprintfv TRIO_PROTO((trio_outstream_t stream, trio_pointer_t closure,
134 int trio_cscanf TRIO_PROTO((trio_instream_t stream, trio_pointer_t closure,
136 int trio_vcscanf TRIO_PROTO((trio_instream_t stream, trio_pointer_t closure,
138 int trio_cscanfv TRIO_PROTO((trio_instream_t stream, trio_pointer_t closure,
  /external/chromium_org/v8/src/
contexts.cc 41 ASSERT(current->closure() == closure());
80 JSFunction* closure = JSFunction::cast(current->closure()); local
81 current = Context::cast(closure->context());
156 context->closure()->shared()->scope_info(), isolate);
  /external/libxml2/
trio.h 92 int trio_cprintf TRIO_PROTO((trio_outstream_t stream, trio_pointer_t closure,
94 int trio_vcprintf TRIO_PROTO((trio_outstream_t stream, trio_pointer_t closure,
96 int trio_cprintfv TRIO_PROTO((trio_outstream_t stream, trio_pointer_t closure,
134 int trio_cscanf TRIO_PROTO((trio_instream_t stream, trio_pointer_t closure,
136 int trio_vcscanf TRIO_PROTO((trio_instream_t stream, trio_pointer_t closure,
138 int trio_cscanfv TRIO_PROTO((trio_instream_t stream, trio_pointer_t closure,
  /external/libxslt/libxslt/
trio.h 92 int trio_cprintf TRIO_PROTO((trio_outstream_t stream, trio_pointer_t closure,
94 int trio_vcprintf TRIO_PROTO((trio_outstream_t stream, trio_pointer_t closure,
96 int trio_cprintfv TRIO_PROTO((trio_outstream_t stream, trio_pointer_t closure,
134 int trio_cscanf TRIO_PROTO((trio_instream_t stream, trio_pointer_t closure,
136 int trio_vcscanf TRIO_PROTO((trio_instream_t stream, trio_pointer_t closure,
138 int trio_cscanfv TRIO_PROTO((trio_instream_t stream, trio_pointer_t closure,
  /external/v8/src/
contexts.cc 41 ASSERT(current->closure() == closure());
71 JSFunction* closure = JSFunction::cast(current->closure()); local
72 current = Context::cast(closure->context());
143 context->closure()->shared()->scope_info(), isolate);
compiler.h 46 explicit CompilationInfo(Handle<JSFunction> closure);
65 Handle<JSFunction> closure() const { return closure_; } function in class:v8::internal::BASE_EMBEDDED
141 return !closure().is_null() && (closure()->context()->global() != NULL);
145 return has_global_object() ? closure()->context()->global() : NULL;
  /external/libffi/src/sh/
ffi.c 457 ffi_prep_closure_loc (ffi_closure* closure,
468 tramp = (unsigned int *) &closure->tramp[0];
484 closure->cif = cif;
485 closure->fun = fun;
486 closure->user_data = user_data;
497 * entry, r3 holds the address of the closure.
513 ffi_closure_helper_SYSV (ffi_closure *closure, void *rvalue,
526 cif = closure->cif;
529 /* Copy the caller's structure return value address so that the closure
539 cif = closure->cif
    [all...]
  /external/libffi/src/mips/
ffi.c 566 ffi_prep_closure_loc (ffi_closure *closure,
572 unsigned int *tramp = (unsigned int *) &closure->tramp[0];
626 closure->cif = cif;
627 closure->fun = fun;
628 closure->user_data = user_data;
646 * stored. CLOSURE is the prepared closure to invoke.
656 ffi_closure_mips_inner_O32 (ffi_closure *closure,
666 cif = closure->cif;
732 /* Invoke the closure. *
    [all...]
  /external/libffi/src/ia64/
ffi.c 387 some user data. A closure is invoked by reinterpreting the closure
391 interpreted procedure, into a closure.
396 the closure (in the "trampoline" area), but we replace the gp
397 pointer with a pointer to the closure itself. We also add the real
398 gp pointer to the closure. This allows the function entry code to
404 ffi_prep_closure_loc (ffi_closure* closure,
421 UINT64 fake_gp; /* Pointer to closure, installed as gp. */
430 tramp = (struct ffi_ia64_trampoline_struct *)closure->tramp;
436 closure->cif = cif
    [all...]
  /external/libffi/src/pa/
ffi.c 417 ffi_status ffi_closure_inner_pa32(ffi_closure *closure, UINT32 *stack)
429 cif = closure->cif;
465 /* The closure call is indirect. In Linux, floating point
522 /* Invoke the closure. */
523 (closure->fun) (cif, rvalue, avalue, closure->user_data);
611 /* Fill in a closure to refer to the specified fun and user_data.
618 ffi_prep_closure_loc (ffi_closure* closure,
624 UINT32 *tramp = (UINT32 *)(closure->tramp);
638 tramp[3] = 0x36b53ff1; /* ldo -8(%r21),%r21 ; get closure addr *
    [all...]
  /external/libffi/src/x86/
ffi64.c 438 ffi_prep_closure_loc (ffi_closure* closure,
446 tramp = (volatile unsigned short *) &closure->tramp[0];
459 closure->cif = cif;
460 closure->fun = fun;
461 closure->user_data = user_data;
467 ffi_closure_unix64_inner(ffi_closure *closure, void *rvalue,
477 cif = closure->cif;
488 /* The return value goes in memory. Arrange for the closure
565 /* Invoke the closure. */
566 closure->fun (cif, rvalue, avalue, closure->user_data)
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_expanded_container.cc 76 void Marshal_VOID__OBJECT_BOXED(GClosure* closure,
87 register GCClosure *cc = reinterpret_cast<GCClosure*>(closure);
92 if (G_CCLOSURE_SWAP_DATA(closure)) {
93 data1 = closure->data;
97 data2 = closure->data;
  /external/chromium_org/ppapi/proxy/
ppb_message_loop_proxy.cc 95 PostClosure(info.from_here, info.closure, info.delay_ms);
178 const base::Closure& closure,
182 from_here, closure, base::TimeDelta::FromMilliseconds(delay_ms));
186 info.closure = closure;
  /external/chromium_org/third_party/protobuf/python/google/protobuf/pyext/
python_descriptor.cc 51 CFieldDescriptor* self, void *closure) {
57 CFieldDescriptor *self, void *closure) {
63 CFieldDescriptor *self, void *closure) {
69 CFieldDescriptor *self, void *closure) {
75 CFieldDescriptor *self, void *closure) {
  /external/chromium_org/ui/base/gtk/
gtk_expanded_container.cc 78 void Marshal_VOID__OBJECT_BOXED(GClosure* closure,
89 register GCClosure *cc = reinterpret_cast<GCClosure*>(closure);
94 if (G_CCLOSURE_SWAP_DATA(closure)) {
95 data1 = closure->data;
99 data2 = closure->data;
  /external/valgrind/unittest/
thread_wrappers.h 163 struct Closure {
185 static Closure *NewCallback(void (*f)()) {
186 Closure *res = new Closure;
195 Closure *NewCallback(void (*f)(P1), P1 p1) {
197 Closure *res = new Closure;
206 Closure *NewCallback(void (*f)(P1, P2), P1 p1, P2 p2) {
209 Closure *res = new Closure;
273 Closure *closure = reinterpret_cast<Closure*>(pool->queue_.Get()); local
    [all...]
  /ndk/build/core/
definitions-graph.mk 190 # Compute the transitive closure
194 # Out: transitive closure of all modules from those in $1. Always includes
203 -ndk-mod-get-closure = $(strip \
209 $(call -ndk-mod-closure-visit,$(_ndk_mod_module))\
211 $(call -ndk-mod-closure-recursive)\
216 # Used internally to visit a new node during -ndk-mod-get-closure.
218 -ndk-mod-closure-visit = \
222 -ndk-mod-closure-recursive = \
228 $(call -ndk-mod-closure-visit,$(_ndk_mod_dep))\
231 $(if $(_ndk_mod_wq),$(call -ndk-mod-closure-recursive)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
hash_table.c 193 void *closure),
194 void *closure)
203 callback(hn->key, hn->data, closure);
  /external/mesa3d/src/mesa/program/
hash_table.c 193 void *closure),
194 void *closure)
203 callback(hn->key, hn->data, closure);
  /external/v8/test/mjsunit/compiler/
inline-construct.js 32 function TestInlinedConstructor(closure) {
35 result = closure(11, 12, counter);
38 result = closure(23, 19, counter);
41 %OptimizeFunctionOnNextCall(closure);
42 result = closure(1, 42, counter)
45 result = closure("foo", "bar", counter)
  /external/chromium_org/v8/test/mjsunit/regress/
regress-2193.js 46 // Make sure we generate optimized code for the first closure after
54 // Optimize the second closure, which should reuse the optimized code
55 // from the first closure with the same literal boilerplates.

Completed in 872 milliseconds

1 2 3 45 6 7 8 91011>>