Home | History | Annotate | Download | only in intltest

Lines Matching defs:SimpleThread

13 #include "simplethread.h"
98 SimpleThread::SimpleThread()
101 SimpleThread::~SimpleThread()
105 SimpleThread::start()
109 SimpleThread::run()
113 SimpleThread::sleep(int32_t millis)
117 SimpleThread::isRunning() {
147 // class SimpleThread Windows Implementation
159 ((SimpleThread*)arg)->run();
163 SimpleThread::SimpleThread()
171 SimpleThread::~SimpleThread()
186 int32_t SimpleThread::start()
216 UBool SimpleThread::isRunning() {
218 // Test whether the thread associated with the SimpleThread object is
248 void SimpleThread::sleep(int32_t millis)
255 // class SimpleThread NULL Implementation
266 SimpleThread::SimpleThread()
269 SimpleThread::~SimpleThread()
273 SimpleThread::start()
277 SimpleThread::run()
281 SimpleThread::sleep(int32_t millis)
285 SimpleThread::isRunning() {
294 // class SimpleThread POSIX implementation
299 // The function SimpleThread::isRunning() is used for this purpose.
326 SimpleThread *This = (SimpleThread *)arg;
339 SimpleThread::SimpleThread()
347 SimpleThread::~SimpleThread()
357 int32_t SimpleThread::start()
405 SimpleThread::isRunning() {
418 void SimpleThread::sleep(int32_t millis)
454 class ThreadWithStatus : public SimpleThread
464 SimpleThread::errorFunc();