Searched refs:ThreadLocal (Results 1 - 2 of 2) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc1241 internal::ThreadLocal<TestPartResultReporterInterface*>
1326 internal::ThreadLocal<std::vector<TraceInfo> > gtest_trace_stack_;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/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 43 milliseconds