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

  /external/chromium/testing/gmock/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/chromium/testing/gmock/include/gmock/internal/
gmock-internal-utils.h 341 // type_equals<T1, T2>::value is non-zero iff T1 and T2 are the same type.
342 template <typename T1, typename T2> struct type_equals : public false_type {}; struct in namespace:testing::internal
343 template <typename T> struct type_equals<T, T> : public true_type {}; struct in namespace:testing::internal
  /external/chromium/testing/gmock/include/gmock/
gmock-spec-builders.h     [all...]

Completed in 223 milliseconds