Searched defs:ThreadLocal (Results 1 - 11 of 11) 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.
22 // ThreadLocalImpl - Common base class of all ThreadLocal instantiations.
34 /// ThreadLocal - A class used to abstract thread-local storage. It holds,
37 class ThreadLocal : public ThreadLocalImpl { class in namespace:llvm::sys
39 ThreadLocal() : ThreadLocalImpl() { } function in class:llvm::sys::ThreadLocal
/external/v8/src/
H A Dregexp-stack.h87 return static_cast<int>(sizeof(ThreadLocal));
106 struct ThreadLocal { struct in class:v8::internal::RegExpStack
107 ThreadLocal() { Clear(); } function in struct:v8::internal::RegExpStack::ThreadLocal
135 ThreadLocal thread_local_;
H A Dexecution.h164 static int ArchiveSpacePerThread() { return sizeof(ThreadLocal); }
247 class ThreadLocal { class in class:v8::internal::StackGuard
249 ThreadLocal() { Clear(); } function in class:v8::internal::StackGuard::ThreadLocal
279 ThreadLocal thread_local_;
H A Ddebug.h483 class ThreadLocal { class in class:v8::internal::Debug
534 ThreadLocal thread_local_;
/external/llvm/lib/VMCore/
H A DGlobals.cpp85 bool ThreadLocal, unsigned AddressSpace)
90 isConstantGlobal(constant), isThreadLocalSymbol(ThreadLocal) {
103 GlobalVariable *Before, bool ThreadLocal,
109 isConstantGlobal(constant), isThreadLocalSymbol(ThreadLocal) {
83 GlobalVariable(Type *Ty, bool constant, LinkageTypes Link, Constant *InitVal, const Twine &Name, bool ThreadLocal, unsigned AddressSpace) argument
100 GlobalVariable(Module &M, Type *Ty, bool constant, LinkageTypes Link, Constant *InitVal, const Twine &Name, GlobalVariable *Before, bool ThreadLocal, unsigned AddressSpace) argument
/external/llvm/lib/AsmParser/
H A DLLParser.cpp653 bool ThreadLocal, IsConstant, UnnamedAddr; local
658 if (ParseOptionalToken(lltok::kw_thread_local, ThreadLocal) ||
718 GV->setThreadLocal(ThreadLocal);
/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/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/gtest/include/gtest/internal/
H A Dgtest-port.h106 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
660 class ThreadLocal { class in namespace:testing::internal
662 ThreadLocal() : value_() {} function in class:testing::internal::ThreadLocal
663 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

Completed in 355 milliseconds