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

1 2

  /external/clang/test/SemaTemplate/
array-to-pointer-decay.cpp 25 bool closure = sanitize<int>(); variable
  /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/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
af_vfs.h 42 void *closure; member in struct:_AFvirtualfile
  /external/bison/src/
closure.c 31 #include "closure.h"
62 fprintf (stderr, "Closure: %s\n", title);
200 closure (item_number *core, size_t n)
197 closure (item_number *core, size_t n) function
  /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/protobuf/src/google/protobuf/stubs/
common_unittest.cc 197 Closure* closure = NewCallback(&SetA123Function); local
199 closure->Run();
204 Closure* closure = NewCallback(current_instance_, local
207 closure->Run();
212 Closure* closure = NewCallback(&SetAFunction, 456); local
214 closure->Run();
219 Closure* closure = NewCallback(current_instance_ local
227 Closure* closure = NewCallback(&SetCFunction, string("test")); local
234 Closure* closure = NewCallback(current_instance_, local
243 Closure* closure = NewCallback(&SetABFunction, 789, cstr); local
253 Closure* closure = NewCallback(current_instance_, local
265 Closure* closure = NewPermanentCallback(&SetA123Function); local
276 Closure* closure = NewPermanentCallback(current_instance_, local
288 Closure* closure = NewPermanentCallback(&SetAFunction, 456); local
299 Closure* closure = NewPermanentCallback(current_instance_, local
312 Closure* closure = NewPermanentCallback(&SetABFunction, 789, cstr); local
328 Closure* closure = NewPermanentCallback(current_instance_, local
    [all...]
  /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;
contexts.h 175 // [ closure ] This is the current function. It is the same for all
305 JSFunction* closure() { return JSFunction::cast(get(CLOSURE_INDEX)); } function in class:v8::internal::Context
306 void set_closure(JSFunction* closure) { set(CLOSURE_INDEX, closure); }
lithium.h 444 LEnvironment(Handle<JSFunction> closure,
451 : closure_(closure),
460 is_tagged_(value_count, closure->GetHeap()->isolate()->zone()),
465 Handle<JSFunction> closure() const { return closure_; } function in class:v8::internal::LEnvironment
  /frameworks/wilhelm/src/
ThreadPool.c 28 Closure *pClosure = ThreadPool_remove(tp);
29 // closure is NULL when thread pool is being destroyed
34 const Closure closure = *pClosure; local
37 ClosureKind kind = closure.mKind;
38 void *context1 = closure.mContext1;
39 void *context2 = closure.mContext2;
40 int parameter1 = closure.mParameter1;
44 ClosureHandler_ppi handler_ppi = closure.mHandler.mHandler_ppi;
51 ClosureHandler_ppii handler_ppii = closure.mHandler.mHandler_ppii
255 Closure *closure = (Closure *) malloc(sizeof(Closure)); local
    [all...]
  /cts/tools/signature-tools/src/signature/compare/
ApiComparator.java 342 Set<ITypeReference> closure = new HashSet<ITypeReference>(); local
344 closure); local
345 return closure;
349 Set<ITypeReference> closure) {
357 closure.add(interfaze);
364 .getRawType(), closure);
366 collectInterfaceClosure(superclass, closure);
372 .getRawType(), closure);
374 collectInterfaceClosure(interfaze, closure);
512 Set<IMethod> closure = new HashSet<IMethod>()
    [all...]
  /external/compiler-rt/BlocksRuntime/
runtime.c 361 * A closure has been copied and its fixup routine is asking us to fix up the reference to the shared byref data
621 struct Block_layout *closure = (struct Block_layout *)block; local
624 if (closure == NULL) {
628 if (! (closure->flags & BLOCK_HAS_DESCRIPTOR)) {
632 cp += sprintf(cp, "^%p (new layout) =\n", (void *)closure);
633 if (closure->isa == NULL) {
636 else if (closure->isa == _NSConcreteStackBlock) {
639 else if (closure->isa == _NSConcreteMallocBlock) {
642 else if (closure->isa == _NSConcreteAutoBlock) {
645 else if (closure->isa == _NSConcreteGlobalBlock)
    [all...]
  /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...]
  /frameworks/compile/libbcc/runtime/BlocksRuntime/
runtime.c 362 * A closure has been copied and its fixup routine is asking us to fix up the reference to the shared byref data
622 struct Block_layout *closure = (struct Block_layout *)block; local
625 if (closure == NULL) {
629 if (! (closure->flags & BLOCK_HAS_DESCRIPTOR)) {
633 cp += sprintf(cp, "^%p (new layout) =\n", (void *)closure);
634 if (closure->isa == NULL) {
637 else if (closure->isa == _NSConcreteStackBlock) {
640 else if (closure->isa == _NSConcreteMallocBlock) {
643 else if (closure->isa == _NSConcreteAutoBlock) {
646 else if (closure->isa == _NSConcreteGlobalBlock)
    [all...]
  /external/icu4c/common/
ucase.c 201 * Hardcode the case closure of i and its relatives and ignore the
205 * This code matches their closure behavior to their case folding behavior.
243 const UChar *closure; local
258 /* get the closure string pointer & length */
263 closure=(const UChar *)pe+1; /* behind this slot, unless there are full case mappings */
266 closure=NULL;
296 closure=(const UChar *)pe; /* behind full case mappings */
299 /* add each code point in the closure string */
301 U16_NEXT_UNSAFE(closure, idx, c);
375 /* found the string: add each code point, and its case closure */
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
firewire-cdev.h 35 * @closure: For arbitrary use by userspace
41 * Data passed in the @closure field for a request will be returned in the
43 * The ioctl used to set @closure depends on the @type of event.
46 __u64 closure; member in struct:fw_cdev_event_common
52 * @closure: See &fw_cdev_event_common; set by %FW_CDEV_IOC_GET_INFO ioctl
66 __u64 closure; member in struct:fw_cdev_event_bus_reset
78 * @closure: See &fw_cdev_event_common;
91 __u64 closure; member in struct:fw_cdev_event_response
100 * @closure: See &fw_cdev_event_common; set by %FW_CDEV_IOC_ALLOCATE ioctl
118 __u64 closure; member in struct:fw_cdev_event_request
142 __u64 closure; member in struct:fw_cdev_event_iso_interrupt
234 __u64 closure; member in struct:fw_cdev_send_request
276 __u64 closure; member in struct:fw_cdev_allocate
374 __u64 closure; member in struct:fw_cdev_create_iso_context
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
firewire-cdev.h 35 * @closure: For arbitrary use by userspace
41 * Data passed in the @closure field for a request will be returned in the
43 * The ioctl used to set @closure depends on the @type of event.
46 __u64 closure; member in struct:fw_cdev_event_common
52 * @closure: See &fw_cdev_event_common; set by %FW_CDEV_IOC_GET_INFO ioctl
66 __u64 closure; member in struct:fw_cdev_event_bus_reset
78 * @closure: See &fw_cdev_event_common;
91 __u64 closure; member in struct:fw_cdev_event_response
100 * @closure: See &fw_cdev_event_common; set by %FW_CDEV_IOC_ALLOCATE ioctl
118 __u64 closure; member in struct:fw_cdev_event_request
142 __u64 closure; member in struct:fw_cdev_event_iso_interrupt
234 __u64 closure; member in struct:fw_cdev_send_request
276 __u64 closure; member in struct:fw_cdev_allocate
374 __u64 closure; member in struct:fw_cdev_create_iso_context
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
firewire-cdev.h 35 * @closure: For arbitrary use by userspace
41 * Data passed in the @closure field for a request will be returned in the
43 * The ioctl used to set @closure depends on the @type of event.
46 __u64 closure; member in struct:fw_cdev_event_common
52 * @closure: See &fw_cdev_event_common; set by %FW_CDEV_IOC_GET_INFO ioctl
66 __u64 closure; member in struct:fw_cdev_event_bus_reset
78 * @closure: See &fw_cdev_event_common;
91 __u64 closure; member in struct:fw_cdev_event_response
100 * @closure: See &fw_cdev_event_common; set by %FW_CDEV_IOC_ALLOCATE ioctl
118 __u64 closure; member in struct:fw_cdev_event_request
142 __u64 closure; member in struct:fw_cdev_event_iso_interrupt
234 __u64 closure; member in struct:fw_cdev_send_request
276 __u64 closure; member in struct:fw_cdev_allocate
374 __u64 closure; member in struct:fw_cdev_create_iso_context
    [all...]
  /gdk/build/core/
definitions.mk 407 # Rationale: This computes the closure of all module dependencies starting from $1
410 $(strip $(call modules-get-closure,$1,depends))
412 modules-get-closure = \
416 $(call modules-closure)\
424 modules-closure = \
430 $(if $(__closure_wq),$(call modules-closure)) \
    [all...]
  /external/libpcap/
gencode.h 245 uset closure; member in struct:block
  /external/valgrind/main/coregrind/
m_translate.c 740 VgCallbackClosure* closure = (VgCallbackClosure*)closureV; local
773 Addr sp = VG_(get_SP)(closure->tid);
1125 VgCallbackClosure* closure = (VgCallbackClosure*)closureV; local
1177 { VgCallbackClosure* closure = (VgCallbackClosure*)closureV; local
1198 VgCallbackClosure* closure = (VgCallbackClosure*)closureV; local
1281 VgCallbackClosure closure; local
    [all...]
  /external/valgrind/main/drd/tests/
tsan_thread_wrappers_pthread.h 434 struct Closure {
456 Closure *NewCallback(void (*f)()) {
457 Closure *res = new Closure;
466 Closure *NewCallback(void (*f)(P1), P1 p1) {
468 Closure *res = new Closure;
477 Closure *NewCallback(void (*f)(P1, P2), P1 p1, P2 p2) {
479 Closure *res = new Closure;
543 Closure *closure = reinterpret_cast<Closure*>(pool->queue_.Get()); local
    [all...]
  /ndk/build/core/
definitions.mk 771 # Rationale: This computes the closure of all module dependencies starting from $1
774 $(call modules-get-closure,$1,depends))
776 modules-get-closure = \
780 $(call modules-closure)\
788 modules-closure = \
795 $(if $(__closure_wq),$(call modules-closure)) \
803 # Rationale: This computes the closure of all local module dependencies starting from $1
805 module-get-depends = $(strip $(call modules-get-closure,$1,$2))
813 # Rationale: This computes the closure of all installable module dependencies starting from $1
815 # For now, only the closure of LOCAL_SHARED_LIBRARIES is enoug
    [all...]

Completed in 961 milliseconds

1 2