Searched defs:ThreadLocal (Results 1 - 15 of 15) 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/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/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.h124 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
1054 // Helpers for ThreadLocal.
1058 // ThreadLocal<T>. Hence the need for class
1074 // ThreadLocal<int> tl(100); // 100 is the default value for each thread.
1086 // In addition, the default ThreadLocal constructor requires T to have
1089 // An object managed for a thread by a ThreadLocal instance is deleted
1090 // when the thread exits. Or, if the ThreadLocal instance dies in
1091 // that thread, when the ThreadLocal dies. It's the user's
1092 // responsibility to ensure that all other threads using a ThreadLocal
1096 // Google Test only uses global ThreadLocal object
1101 class ThreadLocal { class in namespace:testing::internal
1103 ThreadLocal() : key_(CreateKey()), function in class:testing::internal::ThreadLocal
1105 explicit ThreadLocal(const T& value) : key_(CreateKey()), function in class:testing::internal::ThreadLocal
1192 class ThreadLocal { class in namespace:testing::internal
1194 ThreadLocal() : value_() {} function in class:testing::internal::ThreadLocal
1195 explicit ThreadLocal(const T& value) : value_(value) {} function in class:testing::internal::ThreadLocal
[all...]
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-port.h137 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
1334 // Helpers for ThreadLocal.
1338 // ThreadLocal<T>. Hence the need for class
1354 // ThreadLocal<int> tl(100); // 100 is the default value for each thread.
1366 // In addition, the default ThreadLocal constructor requires T to have
1369 // An object managed for a thread by a ThreadLocal instance is deleted
1370 // when the thread exits. Or, if the ThreadLocal instance dies in
1371 // that thread, when the ThreadLocal dies. It's the user's
1372 // responsibility to ensure that all other threads using a ThreadLocal
1376 // Google Test only uses global ThreadLocal object
1381 class ThreadLocal { class in namespace:testing::internal
1383 ThreadLocal() : key_(CreateKey()), function in class:testing::internal::ThreadLocal
1385 explicit ThreadLocal(const T& value) : key_(CreateKey()), function in class:testing::internal::ThreadLocal
1474 class ThreadLocal { class in namespace:testing::internal
1476 ThreadLocal() : value_() {} function in class:testing::internal::ThreadLocal
1477 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/protobuf/gtest/fused-src/gtest/
H A Dgtest.h219 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
2116 // Helpers for ThreadLocal.
2120 // ThreadLocal<T>. Hence the need for class
2136 // ThreadLocal<int> tl(100); // 100 is the default value for each thread.
2148 // In addition, the default ThreadLocal constructor requires T to have
2151 // An object managed for a thread by a ThreadLocal instance is deleted
2152 // when the thread exits. Or, if the ThreadLocal instance dies in
2153 // that thread, when the ThreadLocal dies. It's the user's
2154 // responsibility to ensure that all other threads using a ThreadLocal
2158 // Google Test only uses global ThreadLocal object
2163 class ThreadLocal { class in namespace:std::tr1
2165 ThreadLocal() : key_(CreateKey()), function in class:std::tr1::ThreadLocal
2167 explicit ThreadLocal(const T& value) : key_(CreateKey()), function in class:std::tr1::ThreadLocal
2254 class ThreadLocal { class in namespace:std::tr1
2256 ThreadLocal() : value_() {} function in class:std::tr1::ThreadLocal
2257 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/llvm/tools/llvm-objdump/
H A DMachODump.cpp8537 bool ThreadLocal = ((Flags & MachO::EXPORT_SYMBOL_FLAGS_KIND_MASK) == local
8548 if (WeakDef || ThreadLocal || Resolver || Abs) {
8555 if (ThreadLocal) {
/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 1531 milliseconds