Home | History | Annotate | Download | only in gmock

Lines Matching defs:Ge

5348 // Implements Eq(v), Ge(v), Gt(v), Le(v), Lt(v), and Ne(v)
5351 GMOCK_IMPLEMENT_COMPARISON_MATCHER_(Ge, >=, "is >=", "isn't >=");
5756 // Implements Eq(), Ge(), Gt(), Le(), Lt(), and Ne() respectively.
5759 Ge, >=, "a pair where the first >= the second");
6833 // inner_matcher. For example, Contains(Key(Ge(5))) can be used to match an
7220 inline internal::GeMatcher<Rhs> Ge(Rhs x) {
7301 // Field(&Foo::number, Ge(5))
7495 inline internal::Ge2Matcher Ge() { return internal::Ge2Matcher(); }
7617 // inner_matcher. For example, Contains(Key(Ge(5))) can be used to match an
7626 // example, EXPECT_THAT(map_type, ElementsAre(Pair(Ge(5), "foo"))) can be used