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

1 2 3 4 5 6 7 8

  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
example-function.cpp 31 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...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/shared/maven-invoker/2.0.11/
maven-invoker-2.0.11.jar 
  /external/webrtc/webrtc/base/
thread_unittest.cc 360 AsyncInvoker invoker; local
361 invoker.AsyncInvoke<void>(
386 void AsyncInvokeIntCallback(AsyncInvoker* invoker, Thread* thread) {
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
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...]
asyncinvoker-inl.h 53 // Listens for the "destroyed" signals from the calling thread and the invoker,
61 NotifyingAsyncClosureBase(AsyncInvoker* invoker, Thread* calling_thread);
82 NotifyingAsyncClosure(AsyncInvoker* invoker,
87 : NotifyingAsyncClosureBase(invoker, calling_thread),
110 NotifyingAsyncClosure(AsyncInvoker* invoker,
115 : NotifyingAsyncClosureBase(invoker, calling_thread),
asyncinvoker.cc 62 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,
105 : invoker_(invoker), calling_thread_(calling_thread) {
108 invoker->SignalInvokerDestroyed.connect(
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowActivity.java 401 final ActivityInvoker invoker = new ActivityInvoker(); local
402 invoker.call("onActivityResult", Integer.TYPE, Integer.TYPE, Intent.class)
434 final ActivityInvoker invoker = new ActivityInvoker(); local
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(); local
481 invoker.call("onCreate", Bundle.class).with(noInstanceState);
482 invoker.call("onStart").withNothing();
483 invoker.call("onPostCreate", Bundle.class).with(noInstanceState)
490 final ActivityInvoker invoker = new ActivityInvoker(); local
    [all...]
  /external/valgrind/gdbserver_tests/
make_local_links 103 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/
blend.cpp 141 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));
demosaicing.cpp 631 Bayer2Gray_Invoker<T, SIMDInterpolator> invoker(srcmat, dstmat,
633 parallel_for_(range, invoker, dstmat.total()/static_cast<double>(1<<16));
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/
JPDADebuggeeSynchronizer.java 145 public synchronized String receiveMessageWithoutException(String invoker) {
152 if (invoker != null) {
155 logWriter.println("#### Invoker = " + invoker);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
callback.hpp 40 struct invoker { struct in namespace:boost::unit_test::ut_detail
54 struct invoker<unused> { struct in namespace:boost::unit_test::ut_detail
89 virtual R invoke() { return invoker<R>().invoke( m_f ); }
147 virtual R invoke( T1 t1 ) { return invoker<R>().invoke( m_f, t1 ); }
205 virtual R invoke( T1 t1, T2 t2 ) { return invoker<R>().template invoke<Functor,T1,T2>( m_f, t1, t2 ); }
262 virtual R invoke( T1 t1, T2 t2, T3 t3 ) { return invoker<R>().invoke( m_f, t1, t2, t3 ); }
  /external/testng/src/main/java/org/testng/internal/
TestMethodWorker.java 46 public TestMethodWorker(IInvoker invoker,
55 m_invoker = invoker;
294 public SingleTestMethodWorker(IInvoker invoker,
301 super(invoker,
TestMethodWithDataProviderMethodWorker.java 25 private Invoker m_invoker;
36 public TestMethodWithDataProviderMethodWorker(Invoker invoker, ITestNGMethod testMethod,
44 m_invoker = invoker;
72 final Invoker.FailureContext failure = new Invoker.FailureContext();
  /external/v8/test/mjsunit/
arguments-apply-deopt.js 31 function invoker(h, r) {
38 var y = invoker(m, selfOf);
  /external/testng/src/main/java/org/testng/
SuiteRunner.java 281 IInvoker invoker = null; local
283 // Get the invoker and find all the suite level methods
285 // TODO: Code smell. Invoker should belong to SuiteRunner, not TestRunner
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/
vgdb-invoker-solaris.c 2 /*--- 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
vgdb-invoker-ptrace.c 2 /*--- 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
    [all...]
  /external/emma/core/java12/com/vladium/emma/rt/
AppRunner.java 500 Invoker invoker = new Invoker (appMain, null, new Object [] {m_appArgs}); local
505 Thread appThread = new Thread (appThreadGroup, invoker, IAppConstants.APP_NAME + " main() thread");
524 final Throwable mainFailure = invoker.getFailure ();
525 invoker = null;
639 private static final class Invoker implements Runnable
641 Invoker (final Method method, final Object target, final Object [] args)
    [all...]
  /libcore/ojluni/src/lambda/java/java/lang/invoke/
MethodHandles.java 106 MethodHandle invoker(MethodType type) { return null; } method in class:MethodHandles
  /frameworks/base/core/java/com/android/internal/view/menu/
ActionMenuItemView.java 156 public void setItemInvoker(MenuBuilder.ItemInvoker invoker) {
157 mItemInvoker = invoker;
343 // Call the invoker, then check if the expected popup is showing.
  /frameworks/support/v7/appcompat/src/android/support/v7/view/menu/
ActionMenuItemView.java 157 public void setItemInvoker(MenuBuilder.ItemInvoker invoker) {
158 mItemInvoker = invoker;
323 // Call the invoker, then check if the expected popup is showing.
  /external/opencv3/modules/ml/src/
knearest.cpp 353 findKNearestInvoker invoker(this, k, test_samples, pres, pnr, pd, &result);
354 parallel_for_(Range(0, testcount), invoker);
355 //invoker(Range(0, testcount));
  /external/webrtc/webrtc/p2p/base/
turnport.h 133 rtc::AsyncInvoker* invoker() { return &invoker_; } function in class:cricket::TurnPort
  /prebuilts/tools/common/m2/repository/io/netty/netty-transport/4.1.0.CR3/
netty-transport-4.1.0.CR3.jar 
  /external/opencv3/modules/flann/include/opencv2/flann/
kmeans_index.h 803 KMeansDistanceComputer invoker(distance_, dataset_, branching, indices, dcenters, veclen_, count, belongs_to, radiuses, converged, mtx);
804 parallel_for_(cv::Range(0, (int)indices_length), invoker);
    [all...]

Completed in 3407 milliseconds

1 2 3 4 5 6 7 8