HomeSort by relevance Sort by last modified time
    Searched defs:closure (Results 1 - 25 of 294) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/fixedbugs/
issue17318.go 11 // output parameter appears to cause the called closure to escape,
20 type closure func(i, j int) ent type
29 func foo(ops closure, j int) (err fmt.Stringer) { // ERROR "leaking param: ops$" "leaking param: ops to result err level=0$"
  /prebuilts/go/linux-x86/test/fixedbugs/
issue17318.go 11 // output parameter appears to cause the called closure to escape,
20 type closure func(i, j int) ent type
29 func foo(ops closure, j int) (err fmt.Stringer) { // ERROR "leaking param: ops$" "leaking param: ops to result err level=0$"
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
pdeps.py 11 # Four tables separated by lines like '--- Closure ---':
14 # 3) Indirect dependencies, or the closure of the above
47 print '--- Closure of Uses ---'
48 reach = closure(table)
51 print '--- Closure of Used By ---'
92 # Compute closure (this is in fact totally general)
94 def closure(table): function
  /external/python/cpython2/Tools/scripts/
pdeps.py 11 # Four tables separated by lines like '--- Closure ---':
14 # 3) Indirect dependencies, or the closure of the above
47 print '--- Closure of Uses ---'
48 reach = closure(table)
51 print '--- Closure of Used By ---'
92 # Compute closure (this is in fact totally general)
94 def closure(table): function
  /external/python/cpython3/Tools/scripts/
pdeps.py 11 # Four tables separated by lines like '--- Closure ---':
14 # 3) Indirect dependencies, or the closure of the above
47 print('--- Closure of Uses ---')
48 reach = closure(table)
51 print('--- Closure of Used By ---')
92 # Compute closure (this is in fact totally general)
94 def closure(table): function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
af_vfs.h 46 void *closure; member in struct:_AFvirtualfile
  /external/clang/test/SemaTemplate/
array-to-pointer-decay.cpp 26 bool closure = sanitize<int>(); variable
  /external/libbrillo/brillo/message_loops/
glib_message_loop.h 27 const base::Closure& task,
34 const base::Closure& task) override;
71 base::Closure closure; member in struct:brillo::GlibMessageLoop::ScheduledTask
base_message_loop.h 43 const base::Closure& task,
50 const base::Closure& task) override;
59 base::Closure QuitClosure() const;
92 base::Closure closure; member in struct:brillo::BaseMessageLoop::DelayedTask
103 const base::Closure& task);
120 // Sets the closure to be run immediately whenever the file descriptor
135 base::Closure closure_;
  /external/libffi/testsuite/libffi.call/
cls_many_mixed_float_double.c 2 Purpose: Check register allocation for closure calls with many float and double arguments
36 ffi_closure *closure; local
44 closure = ffi_closure_alloc(sizeof(ffi_closure), (void**)&code);
45 if(closure ==NULL)
48 CHECK(ffi_prep_closure_loc(closure, &cif, cls_mixed_float_double_fn, NULL, code) == FFI_OK);
50 ffi_closure_free(closure);
  /external/python/cpython2/Modules/_ctypes/
malloc_closure.c 26 ffi_closure closure; member in union:_tagITEM
  /external/python/cpython3/Modules/_ctypes/
malloc_closure.c 26 ffi_closure closure; member in union:_tagITEM
  /external/mesa3d/src/util/
string_to_uint_map.h 49 void (*callback)(const char *key, unsigned value, void *closure);
50 void *closure; member in struct:string_map_iterate_wrapper_closure
86 void iterate(void (*func)(const char *, unsigned, void *), void *closure)
96 wrapper->closure = closure;
154 static void delete_key(const void *key, void *data, void *closure)
157 (void) closure;
162 static void subtract_one_wrapper(const void *key, void *data, void *closure)
165 (struct string_map_iterate_wrapper_closure *) closure;
170 wrapper->callback((const char *) key, value, wrapper->closure);
    [all...]
  /external/turbine/java/com/google/turbine/deps/
Transitive.java 39 * Collects the minimal compile-time API for symbols in the supertype closure of compiled classes.
107 Set<ClassSymbol> closure = new LinkedHashSet<>(); local
109 addSuperTypes(closure, env, sym);
112 for (ClassSymbol sym : closure) {
118 closure.addAll(directChildren);
119 return closure;
123 Set<ClassSymbol> closure, Env<ClassSymbol, TypeBoundClass> env, ClassSymbol sym) {
124 if (!closure.add(sym)) {
132 addSuperTypes(closure, env, info.superclass());
135 addSuperTypes(closure, env, i)
    [all...]
  /external/webrtc/webrtc/base/
asyncinvoker.cc 31 scoped_refptr<AsyncClosure> closure = data->data(); local
35 // Execute the closure and trigger the return message if needed.
36 closure->Execute();
59 const scoped_refptr<AsyncClosure>& closure,
65 thread->Post(this, id, new ScopedRefMessageData<AsyncClosure>(closure));
69 const scoped_refptr<AsyncClosure>& closure,
77 new ScopedRefMessageData<AsyncClosure>(closure));
  /external/jarjar/src/main/com/tonicsystems/jarjar/
KeepProcessor.java 43 Set<String> closure = new HashSet<String>(); local
44 closureHelper(closure, roots);
46 removable.removeAll(closure);
50 private void closureHelper(Set<String> closure, Collection<String> process) {
54 if (closure.add(name))
55 closureHelper(closure, depend.get(name));
  /external/libffi/src/frv/
ffi.c 173 ffi_closure *closure = creg; local
184 ffi_cif *cif = closure->cif;
225 /* Invoke the closure. */
232 (closure->fun) (cif, return_struct_ptr, avalue, closure->user_data);
238 (closure->fun) (cif, &rvalue, avalue, closure->user_data);
249 ffi_prep_closure_loc (ffi_closure* closure,
255 unsigned int *tramp = (unsigned int *) &closure->tramp[0];
282 closure->cif = cif
    [all...]
  /external/libffi/src/moxie/
ffi.c 165 ffi_closure *closure = creg; local
182 ffi_cif *cif = closure->cif;
230 /* Invoke the closure. */
233 (closure->fun) (cif, struct_rvalue, avalue, closure->user_data);
239 (closure->fun) (cif, &rvalue, avalue, closure->user_data);
245 ffi_prep_closure_loc (ffi_closure* closure,
251 unsigned short *tramp = (unsigned short *) &closure->tramp[0];
267 closure->cif = cif
    [all...]
  /external/libffi/src/or1k/
ffi.c 169 ffi_closure* closure = (ffi_closure*) r13; local
179 ffi_cif *cif = closure->cif;
253 (closure->fun) (cif, struct_rvalue, avalue, closure->user_data);
257 (closure->fun) (cif, &rvalue, avalue, closure->user_data);
265 ffi_prep_closure_loc (ffi_closure* closure,
271 unsigned short *tramp = (unsigned short *) closure->tramp;
278 closure->cif = cif;
279 closure->user_data = user_data
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/frv/
ffi.c 173 ffi_closure *closure = creg; local
184 ffi_cif *cif = closure->cif;
225 /* Invoke the closure. */
232 (closure->fun) (cif, return_struct_ptr, avalue, closure->user_data);
238 (closure->fun) (cif, &rvalue, avalue, closure->user_data);
249 ffi_prep_closure_loc (ffi_closure* closure,
255 unsigned int *tramp = (unsigned int *) &closure->tramp[0];
282 closure->cif = cif
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/moxie/
ffi.c 165 ffi_closure *closure = creg; local
182 ffi_cif *cif = closure->cif;
230 /* Invoke the closure. */
233 (closure->fun) (cif, struct_rvalue, avalue, closure->user_data);
239 (closure->fun) (cif, &rvalue, avalue, closure->user_data);
245 ffi_prep_closure_loc (ffi_closure* closure,
251 unsigned short *tramp = (unsigned short *) &closure->tramp[0];
267 closure->cif = cif
    [all...]
  /external/python/cpython3/Modules/_ctypes/libffi/src/frv/
ffi.c 173 ffi_closure *closure = creg; local
184 ffi_cif *cif = closure->cif;
225 /* Invoke the closure. */
232 (closure->fun) (cif, return_struct_ptr, avalue, closure->user_data);
238 (closure->fun) (cif, &rvalue, avalue, closure->user_data);
249 ffi_prep_closure_loc (ffi_closure* closure,
255 unsigned int *tramp = (unsigned int *) &closure->tramp[0];
282 closure->cif = cif
    [all...]
  /external/python/cpython3/Modules/_ctypes/libffi/src/moxie/
ffi.c 165 ffi_closure *closure = creg; local
182 ffi_cif *cif = closure->cif;
230 /* Invoke the closure. */
233 (closure->fun) (cif, struct_rvalue, avalue, closure->user_data);
239 (closure->fun) (cif, &rvalue, avalue, closure->user_data);
245 ffi_prep_closure_loc (ffi_closure* closure,
251 unsigned short *tramp = (unsigned short *) &closure->tramp[0];
267 closure->cif = cif
    [all...]
  /system/update_engine/update_manager/
evaluation_context_unittest.cc 34 using base::Closure;
69 void EvaluateRepeatedly(Closure evaluation, scoped_refptr<EvaluationContext> ec,
75 Closure closure = Bind(EvaluateRepeatedly, evaluation, ec, count_p, done_p); local
76 ASSERT_TRUE(ec->RunOnValueChangeOrTimeout(closure))
110 "possibly through closure objects.";
307 Closure evaluation = Bind(ReadVar<string>, eval_ctx_, &fake_poll_var_);
315 Closure closure = Bind(EvaluateRepeatedly, evaluation, eval_ctx_, local
317 ASSERT_TRUE(eval_ctx_->RunOnValueChangeOrTimeout(closure));
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
descrobject.h 16 void *closure; member in struct:PyGetSetDef

Completed in 410 milliseconds

1 2 3 4 5 6 7 8 91011>>