Lines Matching refs:Ge
1046 Matcher<int> m1 = Ge(0); in TEST()
1054 Matcher<int> m = Ge(5); in TEST()
1149 EXPECT_CALL(helper, Call(Ge(ByRef(m)))); in TEST()
1504 EXPECT_THAT(p, Key(Ge(20))); in TEST()
1533 EXPECT_THAT(p, Key(Ge(20))); in TEST()
1641 EXPECT_THAT(p, Pair(Ge(20), HasSubstr("o"))); in TEST()
1692 EXPECT_THAT(pair, Pair(Ge(7), HasSubstr("AB"))); in TEST()
1696 EXPECT_THAT(v, ElementsAre(Pair(11, string("Foo")), Pair(Ge(10), Not("")))); in TEST()
2243 Matcher<const Tuple2&> m = Ge(); in TEST()
2251 Matcher<const Tuple2&> m = Ge(); in TEST()
2504 m = AllOf(Le(2), Ge(1)); in TEST()
2523 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
2558 m = AllOf(Le(2), Ge(1)); in TEST()
2572 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
2582 m = AllOf(Le(2), Ge(1)); in TEST()
2596 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
2691 m = AnyOf(Le(1), Ge(3)); in TEST()
2782 m = AnyOf(Le(1), Ge(3)); in TEST()
2804 m = AnyOf(Le(1), Ge(3)); in TEST()
2972 EXPECT_TRUE(Matches(Ge(0))(1)); in TEST()
3017 EXPECT_FALSE(ExplainMatchResult(Ge(42), 1.5, &listener2)); in TEST()
3132 ASSERT_THAT(5, Ge(2)) << "This should succeed."; in TEST()
3134 EXPECT_THAT(2, AllOf(Le(7), Ge(0))) << "This should succeed too."; in TEST()
3157 EXPECT_THAT(n, ::testing::AllOf(::testing::Le(7), ::testing::Ge(5))), in TEST()
3638 const Matcher<int*> m = Pointee(Ge(0)); in TEST()
3648 const Matcher<const double*> m = Pointee(Ge(0)); in TEST()
3658 const Matcher<int* const &> m = Pointee(Ge(0)); in TEST()
3668 const Matcher<double* &> m = Pointee(Ge(0)); in TEST()
3895 Matcher<AStruct> m = Field(&AStruct::x, Ge(0)); in TEST()
3896 Matcher<AStruct> m_with_name = Field("x", &AStruct::x, Ge(0)); in TEST()
3910 Matcher<AStruct> m = Field(&AStruct::y, Ge(0.0)); in TEST()
3911 Matcher<AStruct> m_with_name = Field("y", &AStruct::y, Ge(0.0)); in TEST()
3949 Matcher<const AStruct&> m = Field(&AStruct::x, Ge(0)); in TEST()
3962 Matcher<const DerivedStruct&> m = Field(&AStruct::x, Ge(0)); in TEST()
3975 Matcher<signed char>(Ge(0))); in TEST()
3985 Matcher<const AStruct&> m = Field(&AStruct::x, Ge(0)); in TEST()
3992 Matcher<const AStruct&> m = Field("field_name", &AStruct::x, Ge(0)); in TEST()
4001 Matcher<const AStruct&> m = Field(&AStruct::x, Ge(0)); in TEST()
4014 Matcher<const AStruct&> m = Field("field_name", &AStruct::x, Ge(0)); in TEST()
4028 Matcher<const AStruct*> m = Field(&AStruct::x, Ge(0)); in TEST()
4038 Matcher<AStruct*> m = Field(&AStruct::x, Ge(0)); in TEST()
4048 Matcher<AStruct* const&> m = Field(&AStruct::x, Ge(0)); in TEST()
4067 Matcher<DerivedStruct*> m = Field(&AStruct::x, Ge(0)); in TEST()
4077 Matcher<const AStruct*> m = Field(&AStruct::x, Ge(0)); in TEST()
4084 Matcher<const AStruct*> m = Field("field_name", &AStruct::x, Ge(0)); in TEST()
4093 Matcher<const AStruct*> m = Field(&AStruct::x, Ge(0)); in TEST()
4107 Matcher<const AStruct*> m = Field("field_name", &AStruct::x, Ge(0)); in TEST()
4162 Matcher<const AClass&> m = Property(&AClass::n, Ge(0)); in TEST()
4163 Matcher<const AClass&> m_with_name = Property("n", &AClass::n, Ge(0)); in TEST()
4240 Matcher<const DerivedClass&> m = Property(&AClass::n, Ge(0)); in TEST()
4255 Matcher<signed char>(Ge(0))); in TEST()
4258 Property("n", &AClass::n, Matcher<signed char>(Ge(0))); in TEST()
4270 Matcher<const AClass&> m = Property(&AClass::n, Ge(0)); in TEST()
4278 Matcher<const AClass&> m = Property("fancy_name", &AClass::n, Ge(0)); in TEST()
4287 Matcher<const AClass&> m = Property(&AClass::n, Ge(0)); in TEST()
4300 Matcher<const AClass&> m = Property("fancy_name", &AClass::n, Ge(0)); in TEST()
4314 Matcher<const AClass*> m = Property(&AClass::n, Ge(0)); in TEST()
4360 Matcher<const DerivedClass*> m = Property(&AClass::n, Ge(0)); in TEST()
4372 Matcher<const AClass*> m = Property(&AClass::n, Ge(0)); in TEST()
4380 Matcher<const AClass*> m = Property("fancy_name", &AClass::n, Ge(0)); in TEST()
4389 Matcher<const AClass*> m = Property(&AClass::n, Ge(0)); in TEST()
4405 Matcher<const AClass*> m = Property("fancy_name", &AClass::n, Ge(0)); in TEST()
4449 Matcher<int> matcher = ResultOf(&IntFunction, Ge(85)); in TEST()
4510 Matcher<int> matcher = ResultOf(IntFunction, Matcher<signed char>(Ge(85))); in TEST()
4559 Matcher<int> matcher_int = ResultOf(PolymorphicFunctor(), Ge(5)); in TEST()
4564 Matcher<const char*> matcher_string = ResultOf(PolymorphicFunctor(), Ge(5)); in TEST()
4652 const Matcher<int> m = AllOf(Ge(1), DivisibleBy(3)); in TEST()
4664 const Matcher<int> m = AllOf(Ge(2), Le(3)); in TEST()
4707 const Matcher<NotCopyable&> m = Ge(ByRef(value2)); in TEST()
5756 {Eq(1), Ne(-2), Ge(3), Le(4), Eq(5)})); in TEST()
5758 {Eq(1), Ne(-2), Ge(3), Le(4), Eq(6)}))); in TEST()