Searched defs:ThreadLocal (Results 1 - 17 of 17) sorted by relevance

/external/deqp/framework/delibs/decpp/
H A DdeThreadLocal.cpp31 ThreadLocal::ThreadLocal (void) function in class:de::ThreadLocal
38 ThreadLocal::~ThreadLocal (void)
H A DdeThreadLocal.hpp35 class ThreadLocal class in namespace:de
38 ThreadLocal (void);
39 ~ThreadLocal (void);
45 ThreadLocal (const ThreadLocal& other); // Not allowed!
46 ThreadLocal& operator= (const ThreadLocal& other); // Not allowed!
/external/llvm/include/llvm/Support/
H A DThreadLocal.h1 //===- llvm/Support/ThreadLocal.h - Thread Local Data ------------*- C++ -*-===//
10 // This file declares the llvm::sys::ThreadLocal class.
23 // ThreadLocalImpl - Common base class of all ThreadLocal instantiations.
43 /// ThreadLocal - A class used to abstract thread-local storage. It holds,
46 class ThreadLocal : public ThreadLocalImpl { class in namespace:llvm::sys
48 ThreadLocal() : ThreadLocalImpl() { } function in class:llvm::sys::ThreadLocal
/external/chromium_org/v8/src/
H A Dexecution.h140 static int ArchiveSpacePerThread() { return sizeof(ThreadLocal); }
236 class ThreadLocal FINAL {
238 ThreadLocal() { Clear(); } function in class:v8::internal::FINAL::FINAL
267 ThreadLocal thread_local_;
H A Dregexp-stack.h64 return static_cast<int>(sizeof(ThreadLocal));
84 struct ThreadLocal { struct in class:v8::internal::RegExpStack
85 ThreadLocal() { Clear(); } function in struct:v8::internal::RegExpStack::ThreadLocal
113 ThreadLocal thread_local_;
H A Ddebug.h595 class ThreadLocal { class in class:v8::internal::Debug
642 ThreadLocal thread_local_;
/external/skia/include/utils/
H A DSkThreadPool.h109 struct ThreadLocal { struct in namespace:SkThreadPoolPrivate
115 struct ThreadLocal<void> { struct in namespace:SkThreadPoolPrivate
129 SkThreadPoolPrivate::ThreadLocal<T> threadLocal;
173 SkThreadPoolPrivate::ThreadLocal<T> threadLocal;
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-port.h135 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
1280 // Helpers for ThreadLocal.
1284 // ThreadLocal<T>. Hence the need for class
1300 // ThreadLocal<int> tl(100); // 100 is the default value for each thread.
1312 // In addition, the default ThreadLocal constructor requires T to have
1315 // An object managed for a thread by a ThreadLocal instance is deleted
1316 // when the thread exits. Or, if the ThreadLocal instance dies in
1317 // that thread, when the ThreadLocal dies. It's the user's
1318 // responsibility to ensure that all other threads using a ThreadLocal
1322 // Google Test only uses global ThreadLocal object
1327 class ThreadLocal { class in namespace:testing::internal
1329 ThreadLocal() : key_(CreateKey()), function in class:testing::internal::ThreadLocal
1331 explicit ThreadLocal(const T& value) : key_(CreateKey()), function in class:testing::internal::ThreadLocal
1418 class ThreadLocal { class in namespace:testing::internal
1420 ThreadLocal() : value_() {} function in class:testing::internal::ThreadLocal
1421 explicit ThreadLocal(const T& value) : value_(value) {} function in class:testing::internal::ThreadLocal
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-port.h137 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
1290 // Helpers for ThreadLocal.
1294 // ThreadLocal<T>. Hence the need for class
1310 // ThreadLocal<int> tl(100); // 100 is the default value for each thread.
1322 // In addition, the default ThreadLocal constructor requires T to have
1325 // An object managed for a thread by a ThreadLocal instance is deleted
1326 // when the thread exits. Or, if the ThreadLocal instance dies in
1327 // that thread, when the ThreadLocal dies. It's the user's
1328 // responsibility to ensure that all other threads using a ThreadLocal
1332 // Google Test only uses global ThreadLocal object
1337 class ThreadLocal { class in namespace:testing::internal
1339 ThreadLocal() : key_(CreateKey()), function in class:testing::internal::ThreadLocal
1341 explicit ThreadLocal(const T& value) : key_(CreateKey()), function in class:testing::internal::ThreadLocal
1428 class ThreadLocal { class in namespace:testing::internal
1430 ThreadLocal() : value_() {} function in class:testing::internal::ThreadLocal
1431 explicit ThreadLocal(const T& value) : value_(value) {} function in class:testing::internal::ThreadLocal
[all...]
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-port.h135 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
1280 // Helpers for ThreadLocal.
1284 // ThreadLocal<T>. Hence the need for class
1300 // ThreadLocal<int> tl(100); // 100 is the default value for each thread.
1312 // In addition, the default ThreadLocal constructor requires T to have
1315 // An object managed for a thread by a ThreadLocal instance is deleted
1316 // when the thread exits. Or, if the ThreadLocal instance dies in
1317 // that thread, when the ThreadLocal dies. It's the user's
1318 // responsibility to ensure that all other threads using a ThreadLocal
1322 // Google Test only uses global ThreadLocal object
1327 class ThreadLocal { class in namespace:testing::internal
1329 ThreadLocal() : key_(CreateKey()), function in class:testing::internal::ThreadLocal
1331 explicit ThreadLocal(const T& value) : key_(CreateKey()), function in class:testing::internal::ThreadLocal
1418 class ThreadLocal { class in namespace:testing::internal
1420 ThreadLocal() : value_() {} function in class:testing::internal::ThreadLocal
1421 explicit ThreadLocal(const T& value) : value_(value) {} function in class:testing::internal::ThreadLocal
[all...]
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-port.h115 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
767 class ThreadLocal { class in namespace:testing::internal
769 ThreadLocal() : value_() {} function in class:testing::internal::ThreadLocal
770 explicit ThreadLocal(const T& value) : value_(value) {} function in class:testing::internal::ThreadLocal
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-port.h212 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
1695 // Provides a way for a thread to send notifications to a ThreadLocal
1700 // this ThreadLocal<T>'s constructor and returns it. It is the caller's
1701 // responsibility not to call this when the ThreadLocal<T> instance already
1714 // thread and notifies them when the thread exits. A ThreadLocal instance is
1723 // Invoked when a ThreadLocal instance is destroyed.
1782 // ThreadLocal<int> tl(100); // 100 is the default value for each thread.
1794 // In addition, the default ThreadLocal constructor requires T to have
1800 // ThreadLocal instance are not guaranteed to be destroyed on all platforms.
1802 // Google Test only uses global ThreadLocal object
1807 class ThreadLocal : public ThreadLocalBase { class in namespace:testing::internal
1809 ThreadLocal() : default_() {} function in class:testing::internal::ThreadLocal
1810 explicit ThreadLocal(const T& value) : default_(value) {} function in class:testing::internal::ThreadLocal
1962 class ThreadLocal { class in namespace:testing::internal
1964 ThreadLocal() : key_(CreateKey()), function in class:testing::internal::ThreadLocal
1966 explicit ThreadLocal(const T& value) : key_(CreateKey()), function in class:testing::internal::ThreadLocal
2060 class ThreadLocal { class in namespace:testing::internal
2062 ThreadLocal() : value_() {} function in class:testing::internal::ThreadLocal
2063 explicit ThreadLocal(const T& value) : value_(value) {} function in class:testing::internal::ThreadLocal
[all...]
/external/gtest/include/gtest/internal/
H A Dgtest-port.h145 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
1426 // Helpers for ThreadLocal.
1430 // ThreadLocal<T>. Hence the need for class
1446 // ThreadLocal<int> tl(100); // 100 is the default value for each thread.
1458 // In addition, the default ThreadLocal constructor requires T to have
1461 // An object managed for a thread by a ThreadLocal instance is deleted
1462 // when the thread exits. Or, if the ThreadLocal instance dies in
1463 // that thread, when the ThreadLocal dies. It's the user's
1464 // responsibility to ensure that all other threads using a ThreadLocal
1468 // Google Test only uses global ThreadLocal object
1473 class ThreadLocal { class in namespace:testing::internal
1475 ThreadLocal() : key_(CreateKey()), function in class:testing::internal::ThreadLocal
1477 explicit ThreadLocal(const T& value) : key_(CreateKey()), function in class:testing::internal::ThreadLocal
1566 class ThreadLocal { class in namespace:testing::internal
1568 ThreadLocal() : value_() {} function in class:testing::internal::ThreadLocal
1569 explicit ThreadLocal(const T& value) : value_(value) {} function in class:testing::internal::ThreadLocal
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h241 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
2533 // Helpers for ThreadLocal.
2537 // ThreadLocal<T>. Hence the need for class
2553 // ThreadLocal<int> tl(100); // 100 is the default value for each thread.
2565 // In addition, the default ThreadLocal constructor requires T to have
2568 // An object managed for a thread by a ThreadLocal instance is deleted
2569 // when the thread exits. Or, if the ThreadLocal instance dies in
2570 // that thread, when the ThreadLocal dies. It's the user's
2571 // responsibility to ensure that all other threads using a ThreadLocal
2575 // Google Test only uses global ThreadLocal object
2580 class ThreadLocal { class in namespace:std::tr1
2582 ThreadLocal() : key_(CreateKey()), function in class:std::tr1::ThreadLocal
2584 explicit ThreadLocal(const T& value) : key_(CreateKey()), function in class:std::tr1::ThreadLocal
2673 class ThreadLocal { class in namespace:std::tr1
2675 ThreadLocal() : value_() {} function in class:std::tr1::ThreadLocal
2676 explicit ThreadLocal(const T& value) : value_(value) {} function in class:std::tr1::ThreadLocal
[all...]
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h241 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
2533 // Helpers for ThreadLocal.
2537 // ThreadLocal<T>. Hence the need for class
2553 // ThreadLocal<int> tl(100); // 100 is the default value for each thread.
2565 // In addition, the default ThreadLocal constructor requires T to have
2568 // An object managed for a thread by a ThreadLocal instance is deleted
2569 // when the thread exits. Or, if the ThreadLocal instance dies in
2570 // that thread, when the ThreadLocal dies. It's the user's
2571 // responsibility to ensure that all other threads using a ThreadLocal
2575 // Google Test only uses global ThreadLocal object
2580 class ThreadLocal { class in namespace:std::tr1
2582 ThreadLocal() : key_(CreateKey()), function in class:std::tr1::ThreadLocal
2584 explicit ThreadLocal(const T& value) : key_(CreateKey()), function in class:std::tr1::ThreadLocal
2673 class ThreadLocal { class in namespace:std::tr1
2675 ThreadLocal() : value_() {} function in class:std::tr1::ThreadLocal
2676 explicit ThreadLocal(const T& value) : value_(value) {} function in class:std::tr1::ThreadLocal
[all...]
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 753 milliseconds