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

/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-internal.h838 // When the compiler sees expression IsContainerTest<C>(0), if C is an
839 // STL-style container class, the first overload of IsContainerTest
846 // a container class by checking the type of IsContainerTest<C>(0).
857 // IsContainerTest(typename C::const_iterator*) and
858 // IsContainerTest(...) doesn't work with Visual Age C++ and Sun C++.
861 IsContainer IsContainerTest(int /* dummy */, function in namespace:testing::internal
869 IsNotContainer IsContainerTest(long /* dummy */) { return '\0'; } function in namespace:testing::internal
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
H A Dgtest-internal.h838 // When the compiler sees expression IsContainerTest<C>(0), if C is an
839 // STL-style container class, the first overload of IsContainerTest
846 // a container class by checking the type of IsContainerTest<C>(0).
857 // IsContainerTest(typename C::const_iterator*) and
858 // IsContainerTest(...) doesn't work with Visual Age C++ and Sun C++.
861 IsContainer IsContainerTest(int /* dummy */, function in namespace:testing::internal
869 IsNotContainer IsContainerTest(long /* dummy */) { return '\0'; } function in namespace:testing::internal
/external/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h910 // When the compiler sees expression IsContainerTest<C>(0), if C is an
911 // STL-style container class, the first overload of IsContainerTest
918 // a container class by checking the type of IsContainerTest<C>(0).
929 // IsContainerTest(typename C::const_iterator*) and
930 // IsContainerTest(...) doesn't work with Visual Age C++ and Sun C++.
933 IsContainer IsContainerTest(int /* dummy */, function in namespace:testing::internal
941 IsNotContainer IsContainerTest(long /* dummy */) { return '\0'; } function in namespace:testing::internal
944 sizeof(IsContainerTest<C>(0)) == sizeof(IsContainer)
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h912 // When the compiler sees expression IsContainerTest<C>(0), if C is an
913 // STL-style container class, the first overload of IsContainerTest
920 // a container class by checking the type of IsContainerTest<C>(0).
931 // IsContainerTest(typename C::const_iterator*) and
932 // IsContainerTest(...) doesn't work with Visual Age C++ and Sun C++.
935 IsContainer IsContainerTest(int /* dummy */, function in namespace:testing::internal
943 IsNotContainer IsContainerTest(long /* dummy */) { return '\0'; } function in namespace:testing::internal
/external/libvpx/libvpx/third_party/googletest/src/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
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h935 // When the compiler sees expression IsContainerTest<C>(0), if C is an
936 // STL-style container class, the first overload of IsContainerTest
943 // a container class by checking the type of IsContainerTest<C>(0).
954 // IsContainerTest(typename C::const_iterator*) and
955 // IsContainerTest(...) doesn't work with Visual Age C++ and Sun C++.
958 IsContainer IsContainerTest(int /* dummy */, function in namespace:testing::internal
966 IsNotContainer IsContainerTest(long /* dummy */) { return '\0'; } function in namespace:testing::internal
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h926 // When the compiler sees expression IsContainerTest<C>(0), if C is an
927 // STL-style container class, the first overload of IsContainerTest
934 // a container class by checking the type of IsContainerTest<C>(0).
945 // IsContainerTest(typename C::const_iterator*) and
946 // IsContainerTest(...) doesn't work with Visual Age C++ and Sun C++.
949 IsContainer IsContainerTest(int /* dummy */, function in namespace:testing::internal
957 IsNotContainer IsContainerTest(long /* dummy */) { return '\0'; } function in namespace:testing::internal
/external/v8/testing/gtest/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
/external/google-breakpad/src/testing/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/mesa3d/src/gtest/include/gtest/
H A Dgtest-printers.h376 DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/
H A Dgtest-printers.h376 DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/
H A Dgtest-printers.h376 DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);
/external/google-breakpad/src/testing/gtest/test/
H A Dgtest_unittest.cc177 using testing::internal::IsContainerTest;
7369 // Tests IsContainerTest.
7374 EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest<int>(0)));
7375 EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest<char[5]>(0)));
7376 EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest<NonContainer>(0)));
7381 sizeof(IsContainerTest<std::vector<bool> >(0)));
7383 sizeof(IsContainerTest<std::map<int, double> >(0)));
/external/googletest/googletest/test/
H A Dgtest_unittest.cc266 using testing::internal::IsContainerTest;
7529 // Tests IsContainerTest.
7534 EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest<int>(0)));
7535 EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest<char[5]>(0)));
7536 EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest<NonContainer>(0)));
7541 sizeof(IsContainerTest<std::vector<bool> >(0)));
7543 sizeof(IsContainerTest<std::map<int, double> >(0)));
/external/v8/testing/gtest/test/
H A Dgtest_unittest.cc266 using testing::internal::IsContainerTest;
7510 // Tests IsContainerTest.
7515 EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest<int>(0)));
7516 EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest<char[5]>(0)));
7517 EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest<NonContainer>(0)));
7522 sizeof(IsContainerTest<std::vector<bool> >(0)));
7524 sizeof(IsContainerTest<std::map<int, double> >(0)));
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
H A Dgtest_unittest.cc266 using testing::internal::IsContainerTest;
7227 // Tests IsContainerTest.
7232 EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest<int>(0)));
7233 EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest<char[5]>(0)));
7234 EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest<NonContainer>(0)));
7239 sizeof(IsContainerTest<std::vector<bool> >(0)));
7241 sizeof(IsContainerTest<std::map<int, double> >(0)));
/external/googletest/googletest/include/gtest/
H A Dgtest-printers.h484 (sizeof(IsContainerTest<T>(0)) == sizeof(IsContainer)) && !IsRecursiveContainer<T>::value
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest-printers.h477 DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);
/external/v8/testing/gtest/include/gtest/
H A Dgtest-printers.h477 DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);
/external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
H A Dgtest.h7799 // When the compiler sees expression IsContainerTest<C>(0), if C is an
7800 // STL-style container class, the first overload of IsContainerTest
7807 // a container class by checking the type of IsContainerTest<C>(0).
7818 // IsContainerTest(typename C::const_iterator*) and
7819 // IsContainerTest(...) doesn't work with Visual Age C++ and Sun C++.
7822 IsContainer IsContainerTest(int /* dummy */, function in namespace:testing::internal
7830 IsNotContainer IsContainerTest(long /* dummy */) { return '\0'; } function in namespace:testing::internal
9568 DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);

Completed in 1713 milliseconds