Searched refs:ThreadWithParam (Results 1 - 6 of 6) sorted by relevance

/gem5/ext/googletest/googlemock/test/
H A Dgmock_stress_test.cc42 using ::testing::internal::ThreadWithParam;
59 void JoinAndDelete(ThreadWithParam<T>* t) {
213 ThreadWithParam<Helper1Param>* const t =
214 new ThreadWithParam<Helper1Param>(Helper1, param, NULL);
267 ThreadWithParam<MockFoo*>* const t =
268 new ThreadWithParam<MockFoo*>(Helper2, &foo, NULL);
289 ThreadWithParam<Dummy>* threads[kTestThreads] = {};
293 new ThreadWithParam<Dummy>(test_routines[i % kRoutines], Dummy(), NULL);
/gem5/ext/googletest/googletest/test/
H A Dgtest_stress_test.cc54 using internal::ThreadWithParam;
58 // thread safe, implement ThreadWithParam. See the description of its API
129 scoped_ptr<ThreadWithParam<int> > threads[kThreadCount];
132 threads[i].reset(new ThreadWithParam<int>(&ManyAsserts,
173 ThreadWithParam<bool> thread(&FailingThread, is_fatal, NULL);
H A Dgtest_output_test_.cc57 using testing::internal::ThreadWithParam;
305 ThreadWithParam<CheckPoints*> thread(&ThreadWithScopedTrace,
502 thread_.reset(new ThreadWithParam<SpawnThreadNotifications*>(
517 testing::internal::scoped_ptr<ThreadWithParam<SpawnThreadNotifications*> >
924 ThreadWithParam<FailureMode> thread(&AddFailure, failure, NULL);
H A Dgtest-port_test.cc1029 ThreadWithParam<int*> thread(&AddTwo, &i, NULL);
1106 typedef ThreadWithParam<pair<AtomicCounterWithMutex*, int> > ThreadType;
1132 ThreadWithParam<T> thread(func, param, NULL);
1264 ThreadWithParam<ThreadParam> thread(
H A Dgtest_unittest.cc299 using testing::internal::ThreadWithParam;
1140 ThreadWithParam<FailureMode> thread(&AddFailure, failure, NULL);
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h1562 // Consequently, it cannot select a correct instantiation of ThreadWithParam
1564 // non-templated base class for ThreadWithParam allows us to bypass this
1590 // ThreadWithParam<int> thread(&ThreadFunc, 5, &thread_can_start);
1596 class ThreadWithParam : public ThreadWithParamBase { class in namespace:testing::internal
1600 ThreadWithParam(UserThreadFunc* func, T param, Notification* thread_can_start) function in class:testing::internal::ThreadWithParam
1611 ~ThreadWithParam() { Join(); }
1635 GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadWithParam);
1787 class ThreadWithParam : public ThreadWithParamBase { class in namespace:testing::internal
1791 ThreadWithParam(UserThreadFunc* func, T param, Notification* thread_can_start) function in class:testing::internal::ThreadWithParam
1794 virtual ~ThreadWithParam() {}
[all...]

Completed in 50 milliseconds