Lines Matching refs:is_same

661   EXPECT_TRUE((std::is_same<int, F::Result>::value));
662 EXPECT_TRUE((std::is_same<std::tuple<>, F::ArgumentTuple>::value));
663 EXPECT_TRUE((std::is_same<std::tuple<>, F::ArgumentMatcherTuple>::value));
664 EXPECT_TRUE((std::is_same<void(), F::MakeResultVoid>::value));
665 EXPECT_TRUE((std::is_same<IgnoredValue(), F::MakeResultIgnoredValue>::value));
671 EXPECT_TRUE((std::is_same<int, F::Result>::value));
672 EXPECT_TRUE((std::is_same<bool, F::Arg<0>::type>::value));
673 EXPECT_TRUE((std::is_same<std::tuple<bool>, F::ArgumentTuple>::value));
675 std::is_same<std::tuple<Matcher<bool>>, F::ArgumentMatcherTuple>::value));
676 EXPECT_TRUE((std::is_same<void(bool), F::MakeResultVoid>::value)); // NOLINT
677 EXPECT_TRUE((std::is_same<IgnoredValue(bool), // NOLINT
684 EXPECT_TRUE((std::is_same<int, F::Result>::value));
685 EXPECT_TRUE((std::is_same<bool, F::Arg<0>::type>::value));
686 EXPECT_TRUE((std::is_same<const long&, F::Arg<1>::type>::value)); // NOLINT
687 EXPECT_TRUE((std::is_same<std::tuple<bool, const long&>, // NOLINT
690 (std::is_same<std::tuple<Matcher<bool>, Matcher<const long&>>, // NOLINT
692 EXPECT_TRUE((std::is_same<void(bool, const long&), // NOLINT
694 EXPECT_TRUE((std::is_same<IgnoredValue(bool, const long&), // NOLINT
701 EXPECT_TRUE((std::is_same<char, F::Result>::value));
702 EXPECT_TRUE((std::is_same<bool, F::Arg<0>::type>::value));
703 EXPECT_TRUE((std::is_same<int, F::Arg<1>::type>::value));
704 EXPECT_TRUE((std::is_same<char*, F::Arg<2>::type>::value));
705 EXPECT_TRUE((std::is_same<int&, F::Arg<3>::type>::value));
706 EXPECT_TRUE((std::is_same<const long&, F::Arg<4>::type>::value)); // NOLINT
708 (std::is_same<std::tuple<bool, int, char*, int&, const long&>, // NOLINT
711 (std::is_same<
716 (std::is_same<void(bool, int, char*, int&, const long&), // NOLINT
719 std::is_same<IgnoredValue(bool, int, char*, int&, const long&), // NOLINT