HomeSort by relevance Sort by last modified time
    Searched refs:TestThread (Results 26 - 50 of 57) sorted by null

12 3

  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
ICUServiceThreadTest.java 113 static class TestThread extends Thread {
119 public TestThread(String name, ICUService service, long delay, TestLog log) {
190 static class RegisterFactoryThread extends TestThread {
203 static class UnregisterFactoryThread extends TestThread {
228 static class UnregisterFactoryListThread extends TestThread {
249 static class GetVisibleThread extends TestThread {
267 static class GetDisplayThread extends TestThread {
304 static class GetThread extends TestThread {
323 static class GetListThread extends TestThread {
  /external/deqp/framework/delibs/decpp/
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);
  /cts/tests/tests/widget/src/android/widget/cts/
FilterTest.java 36 import com.android.compatibility.common.util.TestThread;
64 new TestThread(() -> {
73 new TestThread(() -> {
CursorAdapterTest.java 47 import com.android.compatibility.common.util.TestThread;
359 new TestThread(() -> {
  /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/ref/
PhantomReferenceTest.java 86 class TestThread extends Thread {
99 Thread t = new TestThread();
ReferenceTest.java 175 class TestThread extends Thread {
189 Thread t = new TestThread();
288 class TestThread extends Thread {
297 Thread t = new TestThread();
  /cts/tests/tests/telephony/src/android/telephony/cts/
SubscriptionManagerTest.java 27 import com.android.compatibility.common.util.TestThread;
TelephonyManagerTest.java 47 import com.android.compatibility.common.util.TestThread;
97 TestThread t = new TestThread(new Runnable() {
124 t = new TestThread(new Runnable() {
439 TestThread t = new TestThread(new Runnable() {
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
MonitorTestCase.java 55 private TestThread<Monitor> thread1;
56 private TestThread<Monitor> thread2;
65 tearDownStack.addTearDown(thread1 = new TestThread<Monitor>(monitor, "TestThread #1"));
66 tearDownStack.addTearDown(thread2 = new TestThread<Monitor>(monitor, "TestThread #2"));
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) {
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
KeyGeneratorThread.java 25 public class KeyGeneratorThread extends TestThread {
MacThread.java 21 public class MacThread extends TestThread {
KeyAgreementThread.java 31 public class KeyAgreementThread extends TestThread {
  /external/deqp/modules/egl/
teglGLES2SharedRenderingPerfTests.cpp 717 class TestThread : de::Thread
720 TestThread (const vector<TestContext*> contexts);
721 ~TestThread (void);
745 TestThread& operator= (const TestThread&);
746 TestThread (const TestThread&);
749 TestThread::TestThread (const vector<TestContext*> contexts)
762 TestThread::~TestThread (void
    [all...]
  /frameworks/base/media/tests/SoundPoolTest/src/com/android/
SoundPoolTest.java 42 private TestThread mThread;
67 private final class TestThread extends java.lang.Thread {
76 TestThread() {
77 super("SoundPool.TestThread");
396 mThread = new TestThread();
  /cts/tests/tests/os/src/android/os/cts/
DebugTest.java 22 import com.android.compatibility.common.util.TestThread;
92 TestThread t = new TestThread(new Runnable() {
HandlerTest.java 29 import com.android.compatibility.common.util.TestThread;
59 new TestThread(new Runnable() {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DateIntervalFormatTest.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DateIntervalFormatTest.java     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
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)))
  /external/python/cpython2/Lib/test/
test_threading.py 35 class TestThread(threading.Thread):
93 t = TestThread("<thread %d>"%i, self, sema, mutex, numrunning)
96 self.assertRegexpMatches(repr(t), r'^<TestThread\(.*, initial\)>$')
106 self.assertRegexpMatches(repr(t), r'^<TestThread\(.*, \w+ -?\d+\)>$')
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
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_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)))

Completed in 2000 milliseconds

12 3