Searched refs:IsContainerTest (Results 1 - 3 of 3) sorted by relevance

/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h909 // When the compiler sees expression IsContainerTest<C>(0), if C is an
910 // STL-style container class, the first overload of IsContainerTest
917 // a container class by checking the type of IsContainerTest<C>(0).
928 // IsContainerTest(typename C::const_iterator*) and
929 // IsContainerTest(...) doesn't work with Visual Age C++ and Sun C++.
932 IsContainer IsContainerTest(int /* dummy */, function in namespace:testing::internal
940 IsNotContainer IsContainerTest(long /* dummy */) { return '\0'; } function in namespace:testing::internal
/gem5/ext/googletest/googletest/test/
H A Dgtest_unittest.cc266 using testing::internal::IsContainerTest;
7517 // Tests IsContainerTest.
7522 EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest<int>(0)));
7523 EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest<char[5]>(0)));
7524 EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest<NonContainer>(0)));
7529 sizeof(IsContainerTest<std::vector<bool> >(0)));
7531 sizeof(IsContainerTest<std::map<int, double> >(0)));
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest-printers.h477 DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);

Completed in 37 milliseconds