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

/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h899 // When the compiler sees expression IsContainerTest<C>(0), if C is an
900 // STL-style container class, the first overload of IsContainerTest
907 // a container class by checking the type of IsContainerTest<C>(0).
918 // IsContainerTest(typename C::const_iterator*) and
919 // IsContainerTest(...) doesn't work with Visual Age C++ and Sun C++.
922 IsContainer IsContainerTest(int /* dummy */, function in namespace:testing::internal
930 IsNotContainer IsContainerTest(long /* dummy */) { return '\0'; } function in namespace:testing::internal
/external/gtest/include/gtest/internal/
H A Dgtest-internal.h906 // When the compiler sees expression IsContainerTest<C>(0), if C is an
907 // STL-style container class, the first overload of IsContainerTest
914 // a container class by checking the type of IsContainerTest<C>(0).
925 // IsContainerTest(typename C::const_iterator*) and
926 // IsContainerTest(...) doesn't work with Visual Age C++ and Sun C++.
929 IsContainer IsContainerTest(int /* dummy */, function in namespace:testing::internal
937 IsNotContainer IsContainerTest(long /* dummy */) { return '\0'; } function in namespace:testing::internal
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h925 // When the compiler sees expression IsContainerTest<C>(0), if C is an
926 // STL-style container class, the first overload of IsContainerTest
933 // a container class by checking the type of IsContainerTest<C>(0).
944 // IsContainerTest(typename C::const_iterator*) and
945 // IsContainerTest(...) doesn't work with Visual Age C++ and Sun C++.
948 IsContainer IsContainerTest(int /* dummy */, function in namespace:testing::internal
956 IsNotContainer IsContainerTest(long /* dummy */) { return '\0'; } function in namespace:testing::internal
/external/chromium/testing/gtest/include/gtest/
H A Dgtest-printers.h376 DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);
/external/gtest/include/gtest/
H A Dgtest-printers.h376 DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-printers.h376 DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);
/external/chromium/testing/gtest/test/
H A Dgtest_unittest.cc173 using testing::internal::IsContainerTest;
7150 // Tests IsContainerTest.
7155 EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest<int>(0)));
7156 EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest<char[5]>(0)));
7157 EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest<NonContainer>(0)));
7162 sizeof(IsContainerTest<std::vector<bool> >(0)));
7164 sizeof(IsContainerTest<std::map<int, double> >(0)));
/external/gtest/test/
H A Dgtest_unittest.cc173 using testing::internal::IsContainerTest;
7150 // Tests IsContainerTest.
7155 EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest<int>(0)));
7156 EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest<char[5]>(0)));
7157 EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest<NonContainer>(0)));
7162 sizeof(IsContainerTest<std::vector<bool> >(0)));
7164 sizeof(IsContainerTest<std::map<int, double> >(0)));

Completed in 54 milliseconds