Searched refs:type_equals (Results 1 - 10 of 10) sorted by relevance

/external/google-breakpad/src/testing/test/
H A Dgmock-internal-utils_test.cc486 TEST(TypeTraitsTest, type_equals) {
487 EXPECT_FALSE((type_equals<int, const int>::value));
488 EXPECT_FALSE((type_equals<int, int&>::value));
489 EXPECT_FALSE((type_equals<int, double>::value));
490 EXPECT_TRUE((type_equals<char, char>::value));
494 EXPECT_TRUE((type_equals<char, remove_reference<char&>::type>::value));
495 EXPECT_TRUE((type_equals<const int,
497 EXPECT_TRUE((type_equals<int, remove_reference<int>::type>::value));
498 EXPECT_TRUE((type_equals<double*, remove_reference<double*>::type>::value));
/external/googletest/googlemock/test/
H A Dgmock-internal-utils_test.cc530 TEST(TypeTraitsTest, type_equals) {
531 EXPECT_FALSE((type_equals<int, const int>::value));
532 EXPECT_FALSE((type_equals<int, int&>::value));
533 EXPECT_FALSE((type_equals<int, double>::value));
534 EXPECT_TRUE((type_equals<char, char>::value));
538 EXPECT_TRUE((type_equals<char, remove_reference<char&>::type>::value));
539 EXPECT_TRUE((type_equals<const int,
541 EXPECT_TRUE((type_equals<int, remove_reference<int>::type>::value));
542 EXPECT_TRUE((type_equals<double*, remove_reference<double*>::type>::value));
/external/v8/testing/gmock/test/
H A Dgmock-internal-utils_test.cc529 TEST(TypeTraitsTest, type_equals) {
530 EXPECT_FALSE((type_equals<int, const int>::value));
531 EXPECT_FALSE((type_equals<int, int&>::value));
532 EXPECT_FALSE((type_equals<int, double>::value));
533 EXPECT_TRUE((type_equals<char, char>::value));
537 EXPECT_TRUE((type_equals<char, remove_reference<char&>::type>::value));
538 EXPECT_TRUE((type_equals<const int,
540 EXPECT_TRUE((type_equals<int, remove_reference<int>::type>::value));
541 EXPECT_TRUE((type_equals<double*, remove_reference<double*>::type>::value));
/external/google-breakpad/src/testing/include/gmock/internal/
H A Dgmock-internal-utils.h343 // type_equals<T1, T2>::value is non-zero iff T1 and T2 are the same type.
344 template <typename T1, typename T2> struct type_equals : public false_type {}; struct in namespace:testing::internal
345 template <typename T> struct type_equals<T, T> : public true_type {}; struct in namespace:testing::internal
/external/googletest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h343 // type_equals<T1, T2>::value is non-zero iff T1 and T2 are the same type.
344 template <typename T1, typename T2> struct type_equals : public false_type {}; struct in namespace:testing::internal
345 template <typename T> struct type_equals<T, T> : public true_type {}; struct in namespace:testing::internal
/external/v8/testing/gmock/include/gmock/internal/
H A Dgmock-internal-utils.h343 // type_equals<T1, T2>::value is non-zero iff T1 and T2 are the same type.
344 template <typename T1, typename T2> struct type_equals : public false_type {}; struct in namespace:testing::internal
345 template <typename T> struct type_equals<T, T> : public true_type {}; struct in namespace:testing::internal
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-spec-builders.h1566 *os << (internal::type_equals<Result, void>::value ?
/external/googletest/googlemock/include/gmock/
H A Dgmock-spec-builders.h1639 *os << (internal::type_equals<Result, void>::value ?
/external/v8/testing/gmock/include/gmock/
H A Dgmock-spec-builders.h1639 *os << (internal::type_equals<Result, void>::value ?
/external/fmtlib/test/gmock/
H A Dgmock.h801 // type_equals<T1, T2>::value is non-zero iff T1 and T2 are the same type.
802 template <typename T1, typename T2> struct type_equals : public false_type {}; struct in namespace:testing::internal
803 template <typename T> struct type_equals<T, T> : public true_type {}; struct in namespace:testing::internal
10148 *os << (internal::type_equals<Result, void>::value ?

Completed in 470 milliseconds