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

/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 Dregexp-stack.h87 return static_cast<int>(sizeof(ThreadLocal));
107 struct ThreadLocal { struct in class:v8::internal::RegExpStack
108 ThreadLocal() { Clear(); } function in struct:v8::internal::RegExpStack::ThreadLocal
136 ThreadLocal thread_local_;
H A Dexecution.h177 static int ArchiveSpacePerThread() { return sizeof(ThreadLocal); }
264 class ThreadLocal { class in class:v8::internal::StackGuard
266 ThreadLocal() { Clear(); } function in class:v8::internal::StackGuard::ThreadLocal
296 ThreadLocal thread_local_;
H A Ddebug.h565 class ThreadLocal { class in class:v8::internal::Debug
619 ThreadLocal thread_local_;
/external/v8/src/
H A Dregexp-stack.h87 return static_cast<int>(sizeof(ThreadLocal));
107 struct ThreadLocal { struct in class:v8::internal::RegExpStack
108 ThreadLocal() { Clear(); } function in struct:v8::internal::RegExpStack::ThreadLocal
136 ThreadLocal thread_local_;
H A Dexecution.h180 static int ArchiveSpacePerThread() { return sizeof(ThreadLocal); }
266 class ThreadLocal { class in class:v8::internal::StackGuard
268 ThreadLocal() { Clear(); } function in class:v8::internal::StackGuard::ThreadLocal
298 ThreadLocal thread_local_;
H A Ddebug.h493 class ThreadLocal { class in class:v8::internal::Debug
547 ThreadLocal thread_local_;
/external/chromium/sdch/open-vcdiff/src/gtest/internal/
H A Dgtest-port.h86 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
449 class ThreadLocal { class in namespace:testing::internal
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-port.h134 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
1264 // Helpers for ThreadLocal.
1268 // ThreadLocal<T>. Hence the need for class
1284 // ThreadLocal<int> tl(100); // 100 is the default value for each thread.
1296 // In addition, the default ThreadLocal constructor requires T to have
1299 // An object managed for a thread by a ThreadLocal instance is deleted
1300 // when the thread exits. Or, if the ThreadLocal instance dies in
1301 // that thread, when the ThreadLocal dies. It's the user's
1302 // responsibility to ensure that all other threads using a ThreadLocal
1306 // Google Test only uses global ThreadLocal object
1311 class ThreadLocal { class in namespace:testing::internal
1313 ThreadLocal() : key_(CreateKey()), function in class:testing::internal::ThreadLocal
1315 explicit ThreadLocal(const T& value) : key_(CreateKey()), function in class:testing::internal::ThreadLocal
1402 class ThreadLocal { class in namespace:testing::internal
1404 ThreadLocal() : value_() {} function in class:testing::internal::ThreadLocal
1405 explicit ThreadLocal(const T& value) : value_(value) {} function in class:testing::internal::ThreadLocal
[all...]
/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/gtest/include/gtest/internal/
H A Dgtest-port.h135 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
1298 // Helpers for ThreadLocal.
1302 // ThreadLocal<T>. Hence the need for class
1318 // ThreadLocal<int> tl(100); // 100 is the default value for each thread.
1330 // In addition, the default ThreadLocal constructor requires T to have
1333 // An object managed for a thread by a ThreadLocal instance is deleted
1334 // when the thread exits. Or, if the ThreadLocal instance dies in
1335 // that thread, when the ThreadLocal dies. It's the user's
1336 // responsibility to ensure that all other threads using a ThreadLocal
1340 // Google Test only uses global ThreadLocal object
1345 class ThreadLocal { class in namespace:testing::internal
1347 ThreadLocal() : key_(CreateKey()), function in class:testing::internal::ThreadLocal
1349 explicit ThreadLocal(const T& value) : key_(CreateKey()), function in class:testing::internal::ThreadLocal
1436 class ThreadLocal { class in namespace:testing::internal
1438 ThreadLocal() : value_() {} function in class:testing::internal::ThreadLocal
1439 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.h136 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
1285 // Helpers for ThreadLocal.
1289 // ThreadLocal<T>. Hence the need for class
1305 // ThreadLocal<int> tl(100); // 100 is the default value for each thread.
1317 // In addition, the default ThreadLocal constructor requires T to have
1320 // An object managed for a thread by a ThreadLocal instance is deleted
1321 // when the thread exits. Or, if the ThreadLocal instance dies in
1322 // that thread, when the ThreadLocal dies. It's the user's
1323 // responsibility to ensure that all other threads using a ThreadLocal
1327 // Google Test only uses global ThreadLocal object
1332 class ThreadLocal { class in namespace:testing::internal
1334 ThreadLocal() : key_(CreateKey()), function in class:testing::internal::ThreadLocal
1336 explicit ThreadLocal(const T& value) : key_(CreateKey()), function in class:testing::internal::ThreadLocal
1423 class ThreadLocal { class in namespace:testing::internal
1425 ThreadLocal() : value_() {} function in class:testing::internal::ThreadLocal
1426 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/open-vcdiff/gtest/include/gtest/internal/
H A Dgtest-port.h115 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
774 class ThreadLocal { class in namespace:testing::internal
776 ThreadLocal() : value_() {} function in class:testing::internal::ThreadLocal
777 explicit ThreadLocal(const T& value) : value_(value) {} function in class:testing::internal::ThreadLocal
/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.h141 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
1417 // Helpers for ThreadLocal.
1421 // ThreadLocal<T>. Hence the need for class
1437 // ThreadLocal<int> tl(100); // 100 is the default value for each thread.
1449 // In addition, the default ThreadLocal constructor requires T to have
1452 // An object managed for a thread by a ThreadLocal instance is deleted
1453 // when the thread exits. Or, if the ThreadLocal instance dies in
1454 // that thread, when the ThreadLocal dies. It's the user's
1455 // responsibility to ensure that all other threads using a ThreadLocal
1459 // Google Test only uses global ThreadLocal object
1464 class ThreadLocal { class in namespace:testing::internal
1466 ThreadLocal() : key_(CreateKey()), function in class:testing::internal::ThreadLocal
1468 explicit ThreadLocal(const T& value) : key_(CreateKey()), function in class:testing::internal::ThreadLocal
1557 class ThreadLocal { class in namespace:testing::internal
1559 ThreadLocal() : value_() {} function in class:testing::internal::ThreadLocal
1560 explicit ThreadLocal(const T& value) : value_(value) {} function in class:testing::internal::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...]

Completed in 781 milliseconds