Home
last modified time | relevance | path

Searched refs:thread_instance (Results 1 – 12 of 12) sorted by relevance

/dports/www/py-requests-toolbelt/requests-toolbelt-0.9.1/tests/threaded/
H A Dtest_thread.py23 thread_instance = mock.MagicMock()
24 Thread.return_value = thread_instance
32 return (st, thread_instance, Thread)
49 assert thread_instance.daemon is True
50 assert thread_instance._state is 0
51 thread_instance.start.assert_called_once_with()
56 thread_instance = mock.MagicMock()
57 Thread.return_value = thread_instance
61 thread_instance.is_alive.assert_called_once_with()
65 st, thread_instance, _ = _initialize_a_session_thread()
[all …]
/dports/math/stanmath/math-4.2.0/test/unit/math/rev/core/
H A Dthread_stack_instance_test.cpp18 ChainableStack thread_instance; in TEST() local
94 ChainableStack thread_instance; in TEST() local
/dports/java/sablevm/sablevm-1.13/src/libsablevm/
H A Djava_lang_VMThread.c211 if (env->thread.thread_instance == NULL) in Java_java_lang_VMThread_currentThread()
236 env->thread.thread_instance = thread; in Java_java_lang_VMThread_currentThread()
240 *result = *(env->thread.thread_instance); in Java_java_lang_VMThread_currentThread()
H A Dthread.c1944 new_env->thread.thread_instance = in _svmf_thread_native_start()
1946 *(new_env->thread.thread_instance) = *(threadInstance); in _svmf_thread_native_start()
H A Dtypes.h129 jobject thread_instance; member
/dports/www/chromium-legacy/chromium-88.0.4324.182/cc/animation/
H A Danimation_host.cc57 ThreadInstance thread_instance) { in CreateForTesting() argument
58 auto animation_host = base::WrapUnique(new AnimationHost(thread_instance)); in CreateForTesting()
60 if (thread_instance == ThreadInstance::IMPL) in CreateForTesting()
66 AnimationHost::AnimationHost(ThreadInstance thread_instance) in AnimationHost() argument
68 thread_instance_(thread_instance), in AnimationHost()
H A Danimation_host.h57 ThreadInstance thread_instance);
230 explicit AnimationHost(ThreadInstance thread_instance);
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/cc/animation/
H A Danimation_host.cc69 ThreadInstance thread_instance) { in CreateForTesting() argument
70 auto animation_host = base::WrapUnique(new AnimationHost(thread_instance)); in CreateForTesting()
72 if (thread_instance == ThreadInstance::IMPL) in CreateForTesting()
78 AnimationHost::AnimationHost(ThreadInstance thread_instance) in AnimationHost() argument
80 thread_instance_(thread_instance), in AnimationHost()
H A Danimation_host.h57 ThreadInstance thread_instance);
220 explicit AnimationHost(ThreadInstance thread_instance);
/dports/www/chromium-legacy/chromium-88.0.4324.182/cc/test/
H A Danimation_timelines_test_common.cc75 TestHostClient::TestHostClient(ThreadInstance thread_instance) in TestHostClient() argument
76 : host_(AnimationHost::CreateForTesting(thread_instance)), in TestHostClient()
H A Danimation_timelines_test_common.h102 explicit TestHostClient(ThreadInstance thread_instance);
/dports/math/stanmath/math-4.2.0/test/unit/math/rev/functor/
H A Dgradient_test.cpp53 stan::math::ChainableStack thread_instance; in TEST() local