Home
last modified time | relevance | path

Searched refs:TestThread (Results 1 – 11 of 11) sorted by relevance

/external/deqp/framework/platform/android/
DtcuAndroidTestActivity.cpp41 TestThread::TestThread (NativeActivity& activity, const CommandLine& cmdLine) in TestThread() function in tcu::Android::TestThread
51 TestThread::~TestThread (void) in ~TestThread()
56 void TestThread::run (void) in run()
61 void TestThread::onWindowCreated (ANativeWindow* window) in onWindowCreated()
66 void TestThread::onWindowDestroyed (ANativeWindow* window) in onWindowDestroyed()
71 void TestThread::onWindowResized (ANativeWindow* window) in onWindowResized()
77 bool TestThread::render (void) in render()
DtcuAndroidTestActivity.hpp39 class TestThread : public RenderThread class
42 TestThread (NativeActivity& activity, const CommandLine& cmdLine);
43 ~TestThread (void);
73 TestThread m_testThread;
/external/protobuf/src/google/protobuf/stubs/
Donce_unittest.cc73 class TestThread { class in google::protobuf::__anon7c1b70cc0111::OnceInitTest
75 TestThread(Closure* callback) in TestThread() function in google::protobuf::__anon7c1b70cc0111::OnceInitTest::TestThread
83 ~TestThread() { in ~TestThread()
118 reinterpret_cast<TestThread*>(arg)->Run(); in Start()
129 TestThread* RunInitOnceInNewThread() { in RunInitOnceInNewThread()
130 return new TestThread(NewCallback(this, &OnceInitTest::InitOnce)); in RunInitOnceInNewThread()
132 TestThread* RunInitRecursiveOnceInNewThread() { in RunInitRecursiveOnceInNewThread()
133 return new TestThread(NewCallback(this, &OnceInitTest::InitRecursiveOnce)); in RunInitRecursiveOnceInNewThread()
209 scoped_ptr<TestThread> threads[4]; in TEST_F()
226 scoped_ptr<TestThread> threads[8]; in TEST_F()
/external/deqp/modules/egl/
DteglMultiThreadTests.cpp105 class TestThread : public de::Thread class
118 TestThread (MultiThreadedTest& test, int id);
150 virtual bool runThread (TestThread& thread) = 0;
152 bool execTest (TestThread& thread);
157 void barrier (TestThread& thread);
164 vector<TestThread*> m_threads;
174 inline const Library& TestThread::getLibrary (void) const in getLibrary()
179 TestThread::TestThread (MultiThreadedTest& test, int id) in TestThread() function in deqp::egl::TestThread
186 void TestThread::run (void) in run()
197 catch (const TestThread::TestStop&) in run()
[all …]
DteglGLES2SharedRenderingPerfTests.cpp717 class TestThread : de::Thread class
720 TestThread (const vector<TestContext*> contexts);
721 ~TestThread (void);
746 TestThread& operator= (const TestThread&);
747 TestThread (const TestThread&);
750 TestThread::TestThread (const vector<TestContext*> contexts) in TestThread() function in deqp::egl::__anon5a2e14880111::TestThread
763 TestThread::~TestThread (void) in ~TestThread()
768 void TestThread::log (TestLog& testLog) in log()
774 void TestThread::start (void) in start()
781 void TestThread::join (void) in join()
[all …]
/external/deqp/framework/delibs/decpp/
DdeSpinBarrier.cpp99 class TestThread : public de::Thread class
102TestThread (SpinBarrier& barrier, volatile deInt32* sharedVar, int numThreads, int threadNdx, bool… in TestThread() function in de::__anon456ada5f0111::TestThread
160 std::vector<TestThread*> threads (numThreads, static_cast<TestThread*>(DE_NULL)); in multiThreadTest()
169 threads[ndx] = new TestThread(barrier, &sharedVar, numThreads, ndx, busyOk); in multiThreadTest()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DICUServiceThreadTest.java127 static class TestThread extends Thread { class in ICUServiceThreadTest
133 public TestThread(String name, ICUService service, long delay, TestLog log) { in TestThread() method in ICUServiceThreadTest.TestThread
204 static class RegisterFactoryThread extends TestThread {
216 static class UnregisterFactoryThread extends TestThread {
240 static class UnregisterFactoryListThread extends TestThread {
260 static class GetVisibleThread extends TestThread {
277 static class GetDisplayThread extends TestThread {
310 static class GetThread extends TestThread {
328 static class GetListThread extends TestThread {
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/debuggee/
DInvokeMethodWithSuspensionDebuggee.java39 private class TestThread extends Thread { class in InvokeMethodWithSuspensionDebuggee
40 public TestThread() { in TestThread() method in InvokeMethodWithSuspensionDebuggee.TestThread
110 testThread = new TestThread(); in run()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
DThreadOnlyModifierDebuggee.java38 static class TestThread implements Runnable { class in ThreadOnlyModifierDebuggee
41 public TestThread(TestClass obj) { in TestThread() method in ThreadOnlyModifierDebuggee.TestThread
86 threads[i] = new Thread(new TestThread(obj)); in run()
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
DTestUtil.java161 static class TestThread extends Thread { class in TestUtil
165 TestThread(Lock lock, Runnable target) { in TestThread() method in TestUtil.TestThread
195 new TestThread(lock, targets[i]).start(); in runUntilDone()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DDateFormatRegressionTest.java1434 class TestThread extends Thread { in TestT11363() class
1438 TestThread(SimpleDateFormat fmt, Date d) { in TestT11363() method in DateFormatRegressionTest.TestThread
1476 threads[i] = new TestThread(fmt, d); in TestT11363()