Searched refs:Tuple2 (Results 1 - 2 of 2) sorted by relevance

/gem5/ext/googletest/googlemock/test/
H A Dgmock-matchers_test.cc1930 typedef ::testing::tuple<long, int> Tuple2; // NOLINT typedef in namespace:testing::gmock_matchers_test
1935 Matcher<const Tuple2&> m = Eq();
1936 EXPECT_TRUE(m.Matches(Tuple2(5L, 5)));
1937 EXPECT_FALSE(m.Matches(Tuple2(5L, 6)));
1942 Matcher<const Tuple2&> m = Eq();
1949 Matcher<const Tuple2&> m = Ge();
1950 EXPECT_TRUE(m.Matches(Tuple2(5L, 4)));
1951 EXPECT_TRUE(m.Matches(Tuple2(5L, 5)));
1952 EXPECT_FALSE(m.Matches(Tuple2(5L, 6)));
1957 Matcher<const Tuple2
[all...]
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-tuple.h956 template <class Tuple1, class Tuple2>
957 static bool Eq(const Tuple1& /* t1 */, const Tuple2& /* t2 */) {
964 template <class Tuple1, class Tuple2>
965 static bool Eq(const Tuple1& t1, const Tuple2& t2) {

Completed in 23 milliseconds