/external/chromium_org/chrome/test/ui/ |
run_all_unittests.cc | 5 #include "base/threading/platform_thread.h"
|
/external/chromium_org/tools/android/forwarder2/ |
forwarder.h | 9 #include "base/threading/thread.h"
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_fork1.py | 12 threading = import_module('threading') variable 32 import_started = threading.Event() 43 t = threading.Thread(target=importer)
|
test_threading_local.py | 9 threading = test_support.import_module('threading') variable 32 t = threading.Thread(target=target, args=(local, weaklist)) 52 # of a threading.local derived class, the per-thread dictionary 68 t = threading.Thread(target=f, args=(i,)) 81 e1 = threading.Event() 82 e2 = threading.Event() 100 t = threading.Thread(target=f) 131 e1 = threading.Event() 132 e2 = threading.Event( [all...] |
threaded_import_hangers.py | 10 import threading namespace 21 class Worker(threading.Thread): 23 threading.Thread.__init__(self)
|
test_capi.py | 12 import threading namespace 15 threading = None variable 18 @unittest.skipUnless(threading, 'Threading required for this test.') 65 context.lock = threading.Lock() 66 context.event = threading.Event() 69 t = threading.Thread(target=self.pendingcalls_thread, args = (context,)) 101 @unittest.skipUnless(threading and thread, 'Threading required for this test.') 121 t = threading.Thread(target=target [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_fork1.py | 12 threading = import_module('threading') variable 32 import_started = threading.Event() 43 t = threading.Thread(target=importer)
|
test_threading_local.py | 9 threading = test_support.import_module('threading') variable 32 t = threading.Thread(target=target, args=(local, weaklist)) 52 # of a threading.local derived class, the per-thread dictionary 68 t = threading.Thread(target=f, args=(i,)) 81 e1 = threading.Event() 82 e2 = threading.Event() 100 t = threading.Thread(target=f) 131 e1 = threading.Event() 132 e2 = threading.Event( [all...] |
threaded_import_hangers.py | 10 import threading namespace 21 class Worker(threading.Thread): 23 threading.Thread.__init__(self)
|
test_capi.py | 12 import threading namespace 15 threading = None variable 18 @unittest.skipUnless(threading, 'Threading required for this test.') 65 context.lock = threading.Lock() 66 context.event = threading.Event() 69 t = threading.Thread(target=self.pendingcalls_thread, args = (context,)) 101 @unittest.skipUnless(threading and thread, 'Threading required for this test.') 121 t = threading.Thread(target=target [all...] |
/external/chromium/base/ |
base.gypi | 262 'threading/non_thread_safe.h', 263 'threading/non_thread_safe_impl.cc', 264 'threading/non_thread_safe_impl.h', 265 'threading/platform_thread.h', 266 'threading/platform_thread_mac.mm', 267 'threading/platform_thread_posix.cc', 268 'threading/platform_thread_win.cc', 269 'threading/simple_thread.cc', 270 'threading/simple_thread.h', 271 'threading/thread.cc' [all...] |
base.gyp | 183 'threading/non_thread_safe_unittest.cc', 184 'threading/platform_thread_unittest.cc', 185 'threading/simple_thread_unittest.cc', 186 'threading/thread_checker_unittest.cc', 187 'threading/thread_collision_warner_unittest.cc', 188 'threading/thread_local_storage_unittest.cc', 189 'threading/thread_local_unittest.cc', 190 'threading/thread_unittest.cc', 191 'threading/watchdog_unittest.cc', 192 'threading/worker_pool_posix_unittest.cc' [all...] |
/external/chromium_org/chrome/test/pyautolib/ |
timer_queue.py | 6 import threading namespace 9 class TimerQueue(threading.Thread): 25 Note: TimerQueue is a subclass of threading.Thread, call start() to activate; 31 threading.Thread.__init__(self, name='timer_thread') 32 self.timer_queue_lock = threading.Lock()
|
/external/chromium_org/base/ |
base.gypi | 566 'threading/non_thread_safe.h', 567 'threading/non_thread_safe_impl.cc', 568 'threading/non_thread_safe_impl.h', 569 'threading/platform_thread.h', 570 'threading/platform_thread_android.cc', 571 'threading/platform_thread_linux.cc', 572 'threading/platform_thread_mac.mm', 573 'threading/platform_thread_posix.cc', 574 'threading/platform_thread_win.cc', 575 'threading/post_task_and_reply_impl.cc' [all...] |
/external/chromium_org/tools/gn/secondary/base/ |
BUILD.gn | 536 "threading/non_thread_safe.h", 537 "threading/non_thread_safe_impl.cc", 538 "threading/non_thread_safe_impl.h", 539 "threading/platform_thread.h", 540 "threading/platform_thread_android.cc", 541 "threading/platform_thread_linux.cc", 542 "threading/platform_thread_mac.mm", 543 "threading/platform_thread_posix.cc", 544 "threading/platform_thread_win.cc", 545 "threading/post_task_and_reply_impl.cc" [all...] |
/external/chromium_org/base/memory/ |
discardable_memory_allocator_android.h | 15 #include "base/threading/thread_checker.h" 30 // Threading: The allocator must be deleted on the thread it was constructed on 32 // discardable_memory.h for DiscardableMemory's threading guarantees.
|
/external/eigen/doc/ |
TopicMultithreading.dox | 3 /** \page TopicMultiThreading Eigen and multi-threading 22 You can disable Eigen's multi threading at compile time by defining the EIGEN_DONT_PARALLELIZE preprocessor token. 24 Currently, the following algorithms can make use of multi-threading:
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
_threading_local.py | 3 (Note that this module provides a Python version of the threading.local 6 `threading`.) 37 >>> import threading 38 >>> thread = threading.Thread(target=f) 97 >>> thread = threading.Thread(target=f) 124 >>> thread = threading.Thread(target=f) 138 # We need to use objects from the threading module, but the threading 141 # with circular imports. For that reason, we don't import `threading` 224 import threading namespace [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
_threading_local.py | 3 (Note that this module provides a Python version of the threading.local 6 `threading`.) 37 >>> import threading 38 >>> thread = threading.Thread(target=f) 97 >>> thread = threading.Thread(target=f) 124 >>> thread = threading.Thread(target=f) 138 # We need to use objects from the threading module, but the threading 141 # with circular imports. For that reason, we don't import `threading` 224 import threading namespace [all...] |
/external/chromium/base/debug/ |
debugger.cc | 7 #include "base/threading/platform_thread.h"
|
/external/chromium/base/threading/ |
thread_checker_impl.cc | 5 #include "base/threading/thread_checker_impl.h"
|
/external/chromium_org/base/test/ |
test_file_util.cc | 8 #include "base/threading/platform_thread.h"
|
/external/chromium_org/base/threading/ |
thread_checker_impl.cc | 5 #include "base/threading/thread_checker_impl.h"
|
/external/chromium_org/chrome/browser/devtools/ |
refcounted_adb_thread.h | 10 #include "base/threading/thread.h"
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
tsmthred.h | 17 * Tests actual threading
|