Searched refs:GetTypeId (Results 1 - 5 of 5) sorted by relevance

/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-param-util.h516 virtual TypeId GetTestCaseTypeId() const { return GetTypeId<TestCase>(); }
688 if ((*it)->GetTestCaseTypeId() != GetTypeId<TestCase>()) {
H A Dgtest-internal.h443 // GetTypeId<T>() returns the ID of type T. Different values will be
447 TypeId GetTypeId() { function in namespace:testing::internal
456 // of GetTypeId< ::testing::Test>() to get the type ID of
646 GetTypeId<FixtureClass>(),
/gem5/ext/googletest/googletest/test/
H A Dgtest_unittest.cc259 using testing::internal::GetTypeId;
360 // Tests GetTypeId.
363 EXPECT_EQ(GetTypeId<int>(), GetTypeId<int>());
364 EXPECT_EQ(GetTypeId<Test>(), GetTypeId<Test>());
371 EXPECT_NE(GetTypeId<int>(), GetTypeId<const int>());
372 EXPECT_NE(GetTypeId<int>(), GetTypeId<cha
[all...]
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest.h2171 // Note that we call GetTestTypeId() instead of GetTypeId<
2174 // a framework on Mac OS X. The bug causes GetTypeId<
2178 // value, as it always calls GetTypeId<>() from the Google Test
2218 ::testing::internal::GetTypeId<test_fixture>())
/gem5/ext/googletest/googletest/src/
H A Dgtest.cc612 // instead of GetTypeId< ::testing::Test>() to get the type ID of
615 // GetTypeId< ::testing::Test>() to return different values depending
618 // return the same value, as it always calls GetTypeId<>() from the
621 return GetTypeId<Test>();

Completed in 52 milliseconds