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

  /external/v8/src/
contexts.cc 61 JSFunction* closure = JSFunction::cast(current->closure()); local
62 current = Context::cast(closure->context());
123 Handle<Code> code(context->closure()->code());
191 context = Handle<Context>(Context::cast(context->closure()->context()));
219 Handle<Code> code(context->closure()->code());
232 context = Context::cast(context->closure()->context());
compiler.h 76 CompilationInfo(Handle<JSFunction> closure,
79 : closure_(closure),
115 Handle<JSFunction> closure() { return closure_; } function in class:v8::internal::BASE_EMBEDDED
120 if (!closure().is_null()) {
121 return Handle<SharedFunctionInfo>(closure()->shared());
162 return !closure().is_null() && (closure()->context()->global() != NULL);
166 return has_global_object() ? closure()->context()->global() : NULL;
contexts.h 110 // [ closure ] This is the current function. It is the same for all
225 JSFunction* closure() { return JSFunction::cast(get(CLOSURE_INDEX)); } function in class:v8::internal::Context
226 void set_closure(JSFunction* closure) { set(CLOSURE_INDEX, closure); }
  /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/bluetooth/glib/gobject/
gsourceclosure.c 68 source_closure_marshal_BOOLEAN__VOID (GClosure *closure,
76 GCClosure *cc = (GCClosure*) closure;
84 v_return = callback (closure->data);
94 GClosure *closure = data; local
107 g_closure_invoke (closure, &result_value, 2, params, NULL);
120 GClosure *closure = data; local
126 g_closure_invoke (closure, &result_value, 0, NULL, NULL);
164 * @closure: a #GClosure
174 GClosure *closure)
177 g_return_if_fail (closure != NULL)
    [all...]
gclosure.h 34 * @closure: a #GClosure
36 * Check if the closure still needs a marshaller. See g_closure_set_marshal().
39 * @closure.
41 #define G_CLOSURE_NEEDS_MARSHAL(closure) (((GClosure*) (closure))->marshal == NULL)
46 * Get the total number of notifiers connected with the closure @cl.
92 * @closure: the #GClosure on which the notification is emitted
98 GClosure *closure);
101 * @closure: the #GClosure to which the marshaller belongs
103 * callback of @closure doesn't return a value
186 GClosure closure; member in struct:_GCClosure
    [all...]
gclosure.c 46 * In the case of C programs, a closure usually just holds a pointer
57 * marshaller for any closure which is connected to this
64 * GObject create a closure automatically by using one of the
78 * right; if a callback is removed while it is being invoked, the closure
101 GClosure closure; member in union:__anon2202
113 _SET_OLD tmp.closure._field; \
114 tmp.closure._field _OP _value; \
115 _SET_NEW tmp.closure._field; \
161 * GClosure closure;
167 * GClosure *closure)
196 GClosure *closure; local
821 GClosure *closure; local
849 GClosure *closure; local
924 GClosure *closure; local
    [all...]
gobject.c 319 quark_closure_array = g_quark_from_static_string ("GObject-closure-array");
2922 GClosure *closure; local
2986 GClosure *closure = carray->closures[i]; local
3064 GClosure *closure; local
3092 GClosure *closure; local
3121 GClosure *closure; local
    [all...]
gsignal.c 155 GClosure *closure,
218 #define TEST_CLASS_MAGIC (1) /* indicates NULL class closure, candidate for NOP optimization */
254 GClosure *closure; member in struct:_Handler
265 GType instance_type; /* 0 for default closure */
266 GClosure *closure; member in struct:__anon2219
476 GClosure *closure,
500 ((mask & G_SIGNAL_MATCH_CLOSURE) || handler->closure == closure) &&
501 ((mask & G_SIGNAL_MATCH_DATA) || handler->closure->data == data) &&
503 ((mask & G_SIGNAL_MATCH_FUNC) || (handler->closure->marshal == node->c_marshaller &
1852 GClosure *closure = NULL; local
1926 GClosure *closure = NULL; local
    [all...]
  /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...]
  /system/media/opensles/libopensles/
ThreadPool.c 28 Closure *pClosure = ThreadPool_remove(tp);
29 // closure is NULL when thread pool is being destroyed
96 tp->mClosureArray = (Closure **) malloc((maxClosures + 1) * sizeof(Closure *));
162 Closure **oldFront = tp->mClosureFront;
164 Closure **newFront = oldFront;
167 Closure *pClosure = *oldFront;
197 // release the closure circular buffer
216 // Enqueue a closure to be executed later by a worker thread
221 Closure *closure = (Closure *) malloc(sizeof(Closure)) local
    [all...]
  /external/chromium/third_party/icu/source/tools/gencase/
gencase.h 86 UChar32 closure[8]; member in struct:__anon3219
  /external/icu4c/tools/gencase/
gencase.h 89 UChar32 closure[8]; member in struct:__anon4289
  /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...]
  /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/bluetooth/glib/tests/refcount/
closures.c 161 test_closure (GClosure *closure)
163 /* try to produce high contention in closure->ref_count */
166 g_closure_ref (closure);
167 g_closure_sink (closure); /* NOP */
169 g_closure_unref (closure);
175 GClosure *closure = data; local
179 test_closure (closure);
193 GClosure *closure = data; local
197 test_closure (closure);
222 GClosure *closure)
240 GClosure *closure; local
    [all...]
  /external/chromium/third_party/icu/source/common/
ucase.c 476 * Hardcode the case closure of i and its relatives and ignore the
480 * This code matches their closure behavior to their case folding behavior.
518 const UChar *closure; local
533 /* get the closure string pointer & length */
538 closure=(const UChar *)pe+1; /* behind this slot, unless there are full case mappings */
541 closure=NULL;
571 closure=(const UChar *)pe; /* behind full case mappings */
574 /* add each code point in the closure string */
576 U16_NEXT_UNSAFE(closure, idx, c);
650 /* found the string: add each code point, and its case closure */
    [all...]
  /external/icu4c/common/
ucase.c 476 * Hardcode the case closure of i and its relatives and ignore the
480 * This code matches their closure behavior to their case folding behavior.
518 const UChar *closure; local
533 /* get the closure string pointer & length */
538 closure=(const UChar *)pe+1; /* behind this slot, unless there are full case mappings */
541 closure=NULL;
571 closure=(const UChar *)pe; /* behind full case mappings */
574 /* add each code point in the closure string */
576 U16_NEXT_UNSAFE(closure, idx, c);
650 /* found the string: add each code point, and its case closure */
    [all...]
  /external/libpcap/
gencode.h 245 uset closure; member in struct:block
  /ndk/build/core/
definitions.mk 420 # Rationale: This computes the closure of all module dependencies starting from $1
423 $(strip $(call modules-get-closure,$1,depends))
425 modules-get-closure = \
429 $(call modules-closure)\
437 modules-closure = \
443 $(if $(__closure_wq),$(call modules-closure)) \
    [all...]
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 
  /prebuilt/common/jarjar/
jarjar-1.0rc8.jar 

Completed in 301 milliseconds