Searched refs:invoker (Results 1 - 25 of 42) sorted by relevance

12

/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dexample-function.cpp31 function() : invoker (0) { }
32 function(const function& other) : invoker(0) {
33 if (other.invoker)
34 invoker = other.invoker->clone();
37 template<typename F> function(const F& f) : invoker(0) {
38 invoker = new functor_invoker<F, R, Args...>(f);
42 if (invoker)
43 delete invoker;
58 invoker_base<R, Args...>* tmp = invoker;
68 invoker_base<R, Args...>* invoker; member in class:function
[all...]
/external/webrtc/webrtc/base/
H A Dthread_unittest.cc360 AsyncInvoker invoker; local
361 invoker.AsyncInvoke<void>(
386 void AsyncInvokeIntCallback(AsyncInvoker* invoker, Thread* thread) { argument
388 invoker->AsyncInvoke(thread, FunctorC(),
410 AsyncInvoker invoker; local
416 invoker.AsyncInvoke<void>(&thread, FunctorB(&called));
421 AsyncInvoker invoker; local
427 invoker.AsyncInvoke(&thread, FunctorA(),
437 // Try destroying invoker during call.
439 AsyncInvoker invoker; local
450 AsyncInvoker invoker; local
470 AsyncInvoker invoker; local
484 AsyncInvoker invoker; local
502 AsyncInvoker invoker; local
531 AsyncInvokeIntCallback(GuardedAsyncInvoker* invoker, Thread* thread) argument
555 CreateInvoker(scoped_ptr<GuardedAsyncInvoker>* invoker) argument
565 scoped_ptr<GuardedAsyncInvoker> invoker; local
583 scoped_ptr<GuardedAsyncInvoker> invoker; local
600 GuardedAsyncInvoker invoker; local
608 GuardedAsyncInvoker invoker; local
620 GuardedAsyncInvoker invoker; local
631 GuardedAsyncInvoker invoker; local
652 GuardedAsyncInvoker invoker; local
666 GuardedAsyncInvoker invoker; local
682 GuardedAsyncInvoker invoker; local
[all...]
H A Dasyncinvoker-inl.h53 // Listens for the "destroyed" signals from the calling thread and the invoker,
61 NotifyingAsyncClosureBase(AsyncInvoker* invoker, Thread* calling_thread);
82 NotifyingAsyncClosure(AsyncInvoker* invoker, argument
87 : NotifyingAsyncClosureBase(invoker, calling_thread),
110 NotifyingAsyncClosure(AsyncInvoker* invoker, argument
115 : NotifyingAsyncClosureBase(invoker, calling_thread),
H A Dasyncinvoker.cc62 LOG(LS_WARNING) << "Tried to invoke while destroying the invoker.";
73 LOG(LS_WARNING) << "Tried to invoke while destroying the invoker.";
103 NotifyingAsyncClosureBase::NotifyingAsyncClosureBase(AsyncInvoker* invoker, argument
105 : invoker_(invoker), calling_thread_(calling_thread) {
108 invoker->SignalInvokerDestroyed.connect(
/external/v8/test/mjsunit/
H A Darguments-apply-deopt.js31 function invoker(h, r) {
38 var y = invoker(m, selfOf);
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowActivity.java401 final ActivityInvoker invoker = new ActivityInvoker();
402 invoker.call("onActivityResult", Integer.TYPE, Integer.TYPE, Intent.class)
434 final ActivityInvoker invoker = new ActivityInvoker();
435 dialog = (Dialog) invoker.call("onCreateDialog", Integer.TYPE).with(id);
438 invoker.call("onPrepareDialog", Integer.TYPE, Dialog.class)
441 invoker.call("onPrepareDialog", Integer.TYPE, Dialog.class, Bundle.class)
478 final ActivityInvoker invoker = new ActivityInvoker();
481 invoker.call("onCreate", Bundle.class).with(noInstanceState);
482 invoker.call("onStart").withNothing();
483 invoker
[all...]
/external/valgrind/gdbserver_tests/
H A Dmake_local_links103 grep -e 'invoker not implemented' > /dev/null
105 rm -f gdbserver_tests/vgdb.invoker
107 touch gdbserver_tests/vgdb.invoker
/external/opencv3/modules/imgproc/src/
H A Dblend.cpp141 BlendLinearInvoker<uchar> invoker(src1, src2, weights1, weights2, dst);
142 parallel_for_(Range(0, src1.rows), invoker, dst.total()/(double)(1<<16));
146 BlendLinearInvoker<float> invoker(src1, src2, weights1, weights2, dst);
147 parallel_for_(Range(0, src1.rows), invoker, dst.total()/(double)(1<<16));
H A Ddemosaicing.cpp631 Bayer2Gray_Invoker<T, SIMDInterpolator> invoker(srcmat, dstmat,
633 parallel_for_(range, invoker, dstmat.total()/static_cast<double>(1<<16));
892 Bayer2RGB_Invoker<T, SIMDInterpolator> invoker(srcmat, dstmat, start_with_green, blue, size);
893 parallel_for_(range, invoker, dstmat.total()/static_cast<double>(1<<16));
1587 Bayer2RGB_EdgeAware_T_Invoker<T, SIMDInterpolator> invoker(src, dst, size, blue, start_with_green);
1589 parallel_for_(range, invoker, dst.total()/static_cast<double>(1<<16));
H A Dimgwarp.cpp440 resizeNNInvoker invoker(src, dst, x_ofs, pix_size4, ify);
441 parallel_for_(range, invoker, dst.total()/(double)(1<<16));
1787 resizeGeneric_Invoker<HResize, VResize> invoker(src, dst, xofs, yofs, (const AT*)_alpha, beta,
1789 parallel_for_(range, invoker, dst.total()/(double)(1<<16));
2499 resizeAreaFast_Invoker<T, WT, VecOp> invoker(src, dst, scale_x,
2501 parallel_for_(range, invoker, dst.total()/(double)(1<<16));
3268 IPPresizeInvoker invoker(src, dst, inv_scale_x, inv_scale_y, mode, &ok);
3269 parallel_for_(range, invoker, dst.total()/(double)(1<<16));
4703 IPPRemapInvoker invoker(src, dst, map1, map2, ippFunc, ippInterpolation,
4706 parallel_for_(range, invoker, ds
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/
H A DJPDADebuggeeSynchronizer.java145 public synchronized String receiveMessageWithoutException(String invoker) { argument
152 if (invoker != null) {
155 logWriter.println("#### Invoker = " + invoker);
/external/testng/src/main/java/org/testng/internal/
H A DTestMethodWorker.java46 public TestMethodWorker(IInvoker invoker, argument
55 m_invoker = invoker;
294 public SingleTestMethodWorker(IInvoker invoker, argument
301 super(invoker,
H A DTestMethodWithDataProviderMethodWorker.java36 public TestMethodWithDataProviderMethodWorker(Invoker invoker, ITestNGMethod testMethod, argument
44 m_invoker = invoker;
H A DInvoker.java554 InvokedMethodListenerInvoker invoker = new InvokedMethodListenerInvoker(listenerMethod, testResult, m_testContext);
556 invoker.invokeListener(currentListener, invokedMethod);
/external/testng/src/main/java/org/testng/
H A DSuiteRunner.java281 IInvoker invoker = null;
283 // Get the invoker and find all the suite level methods
287 invoker = tr.getInvoker();
299 // Invoke beforeSuite methods (the invoker can be null
303 if (invoker != null) {
305 invoker.invokeConfigurations(null,
336 invoker.invokeConfigurations(null,
/external/valgrind/coregrind/
H A Dvgdb-invoker-solaris.c2 /*--- Implementation of vgdb invoker subsystem on Solaris */
30 /* This module implements vgdb-invoker subsystem as per vgdb.h
32 implementation found in vgdb-invoker-ptrace.c. However the goal
271 I_die_here : (sp) architecture missing in vgdb-invoker-solaris.c
321 I_die_here : architecture missing in vgdb-invoker-solaris.c
352 I_die_here: architecture missing in vgdb-invoker-solaris.c
H A Dvgdb-invoker-ptrace.c2 /*--- Implementation of vgdb invoker subsystem via ptrace() calls. ---*/
877 I_die_here : (sp) architecture missing in vgdb-invoker-ptrace.c
964 I_die_here : architecture missing in vgdb-invoker-ptrace.c
1075 I_die_here: architecture missing in vgdb-invoker-ptrace.c
/external/emma/core/java12/com/vladium/emma/rt/
H A DAppRunner.java500 Invoker invoker = new Invoker (appMain, null, new Object [] {m_appArgs});
505 Thread appThread = new Thread (appThreadGroup, invoker, IAppConstants.APP_NAME + " main() thread");
524 final Throwable mainFailure = invoker.getFailure ();
525 invoker = null;
/external/opencv3/modules/ml/src/
H A Dknearest.cpp353 findKNearestInvoker invoker(this, k, test_samples, pres, pnr, pd, &result);
354 parallel_for_(Range(0, testcount), invoker);
355 //invoker(Range(0, testcount));
H A Dann_mlp.cpp1045 RPropLoop invoker(this, inputs, outputs, _sw, dcount0, dEdw, &E);
1046 parallel_for_(Range(0, chunk_count), invoker);
1047 //invoker(Range(0, chunk_count));
H A Dsvm.cpp1932 PredictBody invoker(this, samples, results, returnDFVal);
1934 invoker(Range(0, nsamples));
1936 parallel_for_(Range(0, nsamples), invoker);
/external/webrtc/webrtc/p2p/base/
H A Dturnport.h133 rtc::AsyncInvoker* invoker() { return &invoker_; } function in class:cricket::TurnPort
H A Dturnport_unittest.cc451 // Flush all requests in the invoker to destroy the TurnEntry.
454 turn_port_->invoker()->Flush(rtc::Thread::Current());
/external/opencv3/modules/flann/include/opencv2/flann/
H A Dkmeans_index.h803 KMeansDistanceComputer invoker(distance_, dataset_, branching, indices, dcenters, veclen_, count, belongs_to, radiuses, converged, mtx);
804 parallel_for_(cv::Range(0, (int)indices_length), invoker);
/external/opencv3/modules/objdetect/src/
H A Dcascadedetect.cpp1355 CascadeClassifierInvoker invoker(*this, (int)nscales, nstripes, s, stripeSizes,
1358 parallel_for_(Range(0, nstripes), invoker);

Completed in 816 milliseconds

12