Searched refs:Ge (Results 1 - 7 of 7) sorted by relevance

/gem5/ext/googletest/googlemock/test/
H A Dgmock_output_test_.cc44 using testing::Ge;
171 EXPECT_CALL(foo_, Bar2(_, _)).With(Ge());
184 EXPECT_CALL(foo_, Bar(Ref(s), _, Ge(0)));
191 EXPECT_CALL(foo_, Bar2(Ge(2), Ge(1)))
192 .With(Ge());
199 EXPECT_CALL(foo_, Bar2(Ge(2), Ge(1)))
200 .With(Ge());
H A Dgmock-matchers_test.cc96 using testing::Ge;
932 // Tests that Ge(v) matches anything >= v.
934 Matcher<int> m1 = Ge(0);
940 // Tests that Ge(v) describes itself properly.
942 Matcher<int> m = Ge(5);
1319 EXPECT_THAT(p, Key(Ge(20)));
1424 EXPECT_THAT(p, Pair(Ge(20), HasSubstr("o")));
1946 // Tests that Ge() matches a 2-tuple where the first field >= the
1949 Matcher<const Tuple2&> m = Ge();
1955 // Tests that Ge() describe
[all...]
H A Dgmock_link_test.h70 // Gt, Lt, Ge, Le, Ne
143 using testing::Ge;
494 // Tests the linkage of the Lt, Gt, Le, Ge, and Ne matchers.
501 ON_CALL(mock, VoidFromFloat(Ge(1.0f))).WillByDefault(Return());
H A Dgmock-generated-matchers_test.cc65 using testing::Ge;
427 ElementsAre(0, Ge(0), _, 3, 4, Ne(2), Eq(6), 7, 8, _));
664 { Eq(1), Ne(-2), Ge(3), Le(4), Eq(5) }));
666 { Eq(1), Ne(-2), Ge(3), Le(4), Eq(6) })));
H A Dgmock-generated-function-mockers_test.cc581 EXPECT_CALL(foo, Call(true, Ge(100)))
H A Dgmock-internal-utils_test.cc474 AllOf(Ge(expected_skip_count), Le(expected_skip_count + 10)));
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h2936 // inner_matcher. For example, Contains(Key(Ge(5))) can be used to match an
3766 inline internal::GeMatcher<Rhs> Ge(Rhs x) { function in namespace:testing
3892 // Field(&Foo::number, Ge(5))
4086 inline internal::Ge2Matcher Ge() { return internal::Ge2Matcher(); } function in namespace:testing
4319 // inner_matcher. For example, Contains(Key(Ge(5))) can be used to match an
4328 // example, EXPECT_THAT(map_type, ElementsAre(Pair(Ge(5), "foo"))) can be used

Completed in 55 milliseconds