HomeSort by relevance Sort by last modified time
    Searched refs:Closure (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium/chrome/browser/sync/notifier/
chrome_system_resources.h 40 invalidation::Closure* task);
42 virtual void ScheduleImmediately(invalidation::Closure* task);
44 virtual void ScheduleOnListenerThread(invalidation::Closure* task);
59 std::set<invalidation::Closure*> posted_tasks_;
68 Task* MakeTaskToPost(invalidation::Closure* task);
71 void RunPostedTask(invalidation::Closure* task);
chrome_invalidation_client.h 79 invalidation::Closure* callback) OVERRIDE;
80 virtual void InvalidateAll(invalidation::Closure* callback) OVERRIDE;
85 virtual void AllRegistrationsLost(invalidation::Closure* callback) OVERRIDE;
chrome_system_resources.cc 56 invalidation::Closure* task) {
68 invalidation::Closure* task) {
81 invalidation::Closure* task) {
147 invalidation::Closure* task) {
162 void ChromeSystemResources::RunPostedTask(invalidation::Closure* task) {
invalidation_util.h 18 void RunAndDeleteClosure(invalidation::Closure* task);
invalidation_util.cc 11 void RunAndDeleteClosure(invalidation::Closure* task) {
chrome_invalidation_client.cc 118 invalidation::Closure* callback) {
168 invalidation::Closure* callback) {
215 invalidation::Closure* callback) {
  /external/openfst/src/include/fst/script/
closure.h 22 #include <fst/closure.h>
30 void Closure(ClosureArgs *args) {
33 Closure(fst, args->arg2);
36 void Closure(MutableFstClass *ofst, ClosureType closure_type);
  /external/openfst/src/script/
closure.cc 19 #include <fst/script/closure.h>
24 void Closure(MutableFstClass *fst, ClosureType closure_type) {
27 Apply<Operation<ClosureArgs> >("Closure", fst->ArcType(), &args);
30 REGISTER_FST_OPERATION(Closure, StdArc, ClosureArgs);
31 REGISTER_FST_OPERATION(Closure, LogArc, ClosureArgs);
32 REGISTER_FST_OPERATION(Closure, Log64Arc, ClosureArgs);
  /frameworks/wilhelm/src/
ThreadPool.h 19 /** Kind of closure */
27 /** Closure handlers */
34 /** \brief Closure represents a deferred computation */
48 } Closure;
62 Closure **mClosureArray; ///< The circular buffer of closures
63 Closure **mClosureFront, **mClosureRear;
66 Closure *mClosureTypical[CLOSURE_TYPICAL+1];
91 extern Closure *ThreadPool_remove(ThreadPool *tp);
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...]
  /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...]
  /external/protobuf/src/google/protobuf/
service.h 67 // Closure* done) {
170 Closure* done) = 0;
254 virtual void NotifyOnCancel(Closure* callback) = 0;
282 Closure* done) = 0;
  /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...]
common.h 750 // a Closure to call when the procedure completes. See the Service interface
753 // To automatically construct a Closure which calls a particular function or
763 // Closure* callback = NewCallback(&FooDone, response);
780 // Closure* callback = NewCallback(this, &Handler::FooDone, response);
806 class LIBPROTOBUF_EXPORT Closure {
808 Closure() {}
809 virtual ~Closure();
814 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Closure);
819 class LIBPROTOBUF_EXPORT FunctionClosure0 : public Closure {
838 class MethodClosure0 : public Closure {
    [all...]
once_unittest.cc 75 TestThread(Closure* callback)
111 Closure* callback_;
common.cc 232 Closure::~Closure() {}
  /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...]
  /external/v8/test/mjsunit/
debug-scopes.js 108 scopes[i] == debug.ScopeType.Closure) {
138 // 'arguments' and might be exposed in the local and closure scope. Just
175 scope.scopeType() == debug.ScopeType.Closure) {
461 // Simple closure formed by returning an inner function referering the outer
463 BeginTest("Closure 1");
475 debug.ScopeType.Closure,
483 // Simple closure formed by returning an inner function referering the outer
484 // functions arguments. Due to VM optimizations parts of the actual closure is
486 BeginTest("Closure 2");
500 debug.ScopeType.Closure,
    [all...]
  /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/openfst/src/include/fst/
closure.h 0 // closure.h
19 // Functions and classes to compute the concatenative closure of an Fst.
34 // Computes the concatenative closure. This version modifies its
36 // then the closure transduces x to y with weight a, xx to yy with
46 void Closure(MutableFst<Arc> *fst, ClosureType closure_type) {
73 // Computes the concatenative closure. This version modifies its
76 void Closure(RationalFst<Arc> *fst, ClosureType closure_type) {
91 // Computes the concatenative closure. This version is a delayed
93 // closure transduces x to y with weight a, xx to yy with weight
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
closure.h 0 // closure.h
17 // Functions and classes to compute the concatenative closure of an Fst.
27 // Computes the concatenative closure. This version modifies its
29 // then the closure transduces x to y with weight a, xx to yy with
39 void Closure(MutableFst<Arc> *fst, ClosureType closure_type) {
65 // Computes the concatenative closure. This version modifies its
68 void Closure(RationalFst<Arc> *fst, ClosureType closure_type) {
83 // Computes the concatenative closure. This version is a delayed
85 // closure transduces x to y with weight a, xx to yy with weight
rational.h 39 template <class A> void Closure(RationalFst<A> *fst, ClosureType closure_type);
167 // Implementation of Closure(RationalFst *, closure_type)
170 Closure(&rfst_, closure_type);
184 // concatenation, and closure. This class attaches interface to
194 friend void Closure<>(RationalFst<A> *fst, ClosureType closure_type);
  /external/chromium/base/
bind_unittest.cc 263 Closure normal_cb = Bind(&VoidFunc0);
264 Closure method_cb = Bind(&HasRef::VoidMethod0, &has_ref_);
265 Closure const_method_nonconst_obj_cb = Bind(&HasRef::VoidConstMethod0,
267 Closure const_method_const_obj_cb = Bind(&HasRef::VoidConstMethod0,
276 Closure virtual_set_cb = Bind(&Parent::VirtualSet, &child);
281 Closure non_virtual_set_cb = Bind(&Parent::NonVirtualSet, &child);
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 
  /external/v8/test/mjsunit/bugs/harmony/
debug-blockscopes.js 109 scopes[i] == debug.ScopeType.Closure) {
141 // 'arguments' and might be exposed in the local and closure scope. Just
182 scope.scopeType() == debug.ScopeType.Closure) {
195 // Simple closure formed by returning an inner function referering to an outer
197 // optimizations parts of the actual closure is missing from the debugger
199 BeginTest("Closure 1");
217 debug.ScopeType.Closure,

Completed in 499 milliseconds

1 2