/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_dummy_threading.py | 8 class TestThread(_threading.Thread):
48 t = self.TestThread(name="<thread %d>"%i)
|
test_threading.py | 29 class TestThread(threading.Thread):
87 t = TestThread("<thread %d>"%i, self, sema, mutex, numrunning)
90 self.assertTrue(re.match('<TestThread\(.*, initial\)>', repr(t)))
100 self.assertTrue(re.match('<TestThread\(.*, \w+ -?\d+\)>', repr(t)))
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_dummy_threading.py | 8 class TestThread(_threading.Thread): 48 t = self.TestThread(name="<thread %d>"%i)
|
test_threading.py | 31 class TestThread(threading.Thread): 89 t = TestThread("<thread %d>"%i, self, sema, mutex, numrunning) 92 self.assertTrue(re.match('<TestThread\(.*, initial\)>', repr(t))) 102 self.assertTrue(re.match('<TestThread\(.*, \w+ -?\d+\)>', repr(t)))
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_dummy_threading.py | 8 class TestThread(_threading.Thread): 48 t = self.TestThread(name="<thread %d>"%i)
|
test_threading.py | 31 class TestThread(threading.Thread): 89 t = TestThread("<thread %d>"%i, self, sema, mutex, numrunning) 92 self.assertTrue(re.match('<TestThread\(.*, initial\)>', repr(t))) 102 self.assertTrue(re.match('<TestThread\(.*, \w+ -?\d+\)>', repr(t)))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_dummy_threading.py | 8 class TestThread(_threading.Thread): 48 t = self.TestThread(name="<thread %d>"%i)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_dummy_threading.py | 8 class TestThread(_threading.Thread): 48 t = self.TestThread(name="<thread %d>"%i)
|
/external/deqp/framework/platform/android/ |
tcuAndroidTestActivity.cpp | 39 // TestThread 41 TestThread::TestThread (NativeActivity& activity, const CommandLine& cmdLine) 52 TestThread::~TestThread (void) 57 void TestThread::run (void) 62 void TestThread::onWindowCreated (ANativeWindow* window) 67 void TestThread::onWindowDestroyed (ANativeWindow* window) 72 void TestThread::onWindowResized (ANativeWindow* window) 78 bool TestThread::render (void [all...] |
tcuAndroidTestActivity.hpp | 39 class TestThread : public RenderThread 42 TestThread (NativeActivity& activity, const CommandLine& cmdLine); 43 ~TestThread (void); 73 TestThread m_testThread;
|
/frameworks/base/core/tests/coretests/src/android/os/ |
MessengerTest.java | 46 private class TestThread extends TestHandlerThread { 54 TestThread.this.handleMessage(msg); 58 TestThread.this.executeTest(); 116 (new TestThread()).doTest(1000);
|
/external/protobuf/src/google/protobuf/stubs/ |
once_unittest.cc | 74 class TestThread { 76 TestThread(Closure* callback) 84 ~TestThread() { 119 reinterpret_cast<TestThread*>(arg)->Run(); 130 TestThread* RunInitOnceInNewThread() { 131 return new TestThread(internal::NewCallback(this, &OnceInitTest::InitOnce)); 133 TestThread* RunInitRecursiveOnceInNewThread() { 134 return new TestThread( 211 scoped_ptr<TestThread> threads[4]; 228 scoped_ptr<TestThread> threads[8] [all...] |
/cts/common/device-side/util/src/com/android/compatibility/common/util/ |
TestThread.java | 23 public final class TestThread extends Thread { 27 public TestThread(Runnable target) {
|
/external/deqp/framework/delibs/decpp/ |
deAppendList.cpp | 69 class TestThread : public Thread 72 TestThread (SharedState* shared, deUint32 threadNdx) 95 typedef SharedPtr<TestThread> TestThreadSp; 104 threads[threadNdx] = TestThreadSp(new TestThread(&sharedState, threadNdx));
|
deSpinBarrier.cpp | 172 class TestThread : public de::Thread 175 TestThread (SpinBarrier& barrier, volatile deInt32* sharedVar, int numThreads, int threadNdx) 238 std::vector<TestThread*> threads (numThreads, static_cast<TestThread*>(DE_NULL)); 242 threads[ndx] = new TestThread(barrier, &sharedVar, numThreads, ndx);
|
/libcore/luni/src/test/java/libcore/java/io/ |
OldAndroidPipedStreamTest.java | 25 private abstract static class TestThread extends Thread { 47 TestThread reader, writer; 49 reader = new TestThread() { 73 writer = new TestThread() { 114 TestThread reader, writer; 116 reader = new TestThread() { 152 writer = new TestThread() { 200 TestThread reader, writer; 202 reader = new TestThread() { 223 writer = new TestThread() { [all...] |
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/ |
ThreadOnlyModifierDebuggee.java | 38 static class TestThread implements Runnable { 41 public TestThread(TestClass obj) { 55 "ThreadOnlyModifierDebuggee.TestThread.readAndWriteField()"); 69 "ThreadOnlyModifierDebuggee.TestThread.throwException()"); 86 threads[i] = new Thread(new TestThread(obj)); 87 threads[i].setName("TestThread#" + i);
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/debuggee/ |
InvokeMethodWithSuspensionDebuggee.java | 36 private static Thread testThread = null; 39 private class TestThread extends Thread { 40 public TestThread() { 41 super("TestThread"); 46 logWriter.println("TestThread starts"); 56 logWriter.println("TestThread ends"); 74 testThread.start(); 110 testThread = new TestThread(); 122 testThread.join() [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ref/ |
SoftReferenceTest.java | 96 class TestThread extends Thread { 104 TestThread t = new TestThread(); 123 TestThread t = new TestThread();
|
PhantomReferenceTest.java | 86 class TestThread extends Thread { 99 Thread t = new TestThread();
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/ |
TestThread.java | 18 public abstract class TestThread implements Runnable { 26 TestThread(String[] names) {
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
TestThread.java | 38 * A helper for concurrency testing. One or more {@code TestThread} instances are instantiated 54 public final class TestThread<L> extends Thread implements TearDown { 66 public TestThread(L lockLikeObject, String threadName) {
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/ |
TestUtil.java | 164 static class TestThread extends Thread { 168 TestThread(Lock lock, Runnable target) { 198 new TestThread(lock, targets[i]).start();
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/ |
TestUtil.java | 163 static class TestThread extends Thread { 167 TestThread(Lock lock, Runnable target) { 197 new TestThread(lock, targets[i]).start();
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
ObjectTest.java | 92 class TestThread implements Runnable { 120 new Thread(new TestThread()).start(); 162 class TestThread implements Runnable { 189 new Thread(new TestThread()).start(); 243 class TestThread implements Runnable { 265 new Thread(new TestThread()).start(); 346 class TestThread implements Runnable { 370 new Thread(new TestThread()).start();
|