HomeSort by relevance Sort by last modified time
    Searched refs:type_equals (Results 1 - 6 of 6) sorted by null

  /external/gmock/test/
gmock-internal-utils_test.cc 480 TEST(TypeTraitsTest, type_equals) {
481 EXPECT_FALSE((type_equals<int, const int>::value));
482 EXPECT_FALSE((type_equals<int, int&>::value));
483 EXPECT_FALSE((type_equals<int, double>::value));
484 EXPECT_TRUE((type_equals<char, char>::value));
488 EXPECT_TRUE((type_equals<char, remove_reference<char&>::type>::value));
489 EXPECT_TRUE((type_equals<const int,
491 EXPECT_TRUE((type_equals<int, remove_reference<int>::type>::value));
492 EXPECT_TRUE((type_equals<double*, remove_reference<double*>::type>::value));
  /external/google-breakpad/src/testing/test/
gmock-internal-utils_test.cc 486 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/google-breakpad/src/testing/include/gmock/internal/
gmock-internal-utils.h 343 // 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/gmock/include/gmock/internal/
gmock-internal-utils.h 343 // 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/gmock/include/gmock/
gmock-spec-builders.h     [all...]
  /external/google-breakpad/src/testing/include/gmock/
gmock-spec-builders.h     [all...]

Completed in 144 milliseconds