Lines Matching refs:Ge
88 using testing::Ge;
806 Matcher<int> m1 = Ge(0); in TEST()
814 Matcher<int> m = Ge(5); in TEST()
1191 EXPECT_THAT(p, Key(Ge(20))); in TEST()
1296 EXPECT_THAT(p, Pair(Ge(20), HasSubstr("o"))); in TEST()
1821 Matcher<const Tuple2&> m = Ge(); in TEST()
1829 Matcher<const Tuple2&> m = Ge(); in TEST()
1931 m = AllOf(Le(2), Ge(1)); in TEST()
1950 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
1976 m = AllOf(Le(2), Ge(1)); in TEST()
1994 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
2006 m = AllOf(Le(2), Ge(1)); in TEST()
2026 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
2107 m = AnyOf(Le(1), Ge(3)); in TEST()
2149 m = AnyOf(Le(1), Ge(3)); in TEST()
2177 m = AnyOf(Le(1), Ge(3)); in TEST()
2349 EXPECT_TRUE(Matches(Ge(0))(1)); in TEST()
2394 EXPECT_FALSE(ExplainMatchResult(Ge(42), 1.5, &listener2)); in TEST()
2455 ASSERT_THAT(5, Ge(2)) << "This should succeed."; in TEST()
2457 EXPECT_THAT(2, AllOf(Le(7), Ge(0))) << "This should succeed too."; in TEST()
2480 EXPECT_THAT(n, ::testing::AllOf(::testing::Le(7), ::testing::Ge(5))), in TEST()
2786 const Matcher<int*> m = Pointee(Ge(0)); in TEST()
2796 const Matcher<const double*> m = Pointee(Ge(0)); in TEST()
2806 const Matcher<int* const &> m = Pointee(Ge(0)); in TEST()
2816 const Matcher<double* &> m = Pointee(Ge(0)); in TEST()
2938 Matcher<AStruct> m = Field(&AStruct::x, Ge(0)); in TEST()
2950 Matcher<AStruct> m = Field(&AStruct::y, Ge(0.0)); in TEST()
2985 Matcher<const AStruct&> m = Field(&AStruct::x, Ge(0)); in TEST()
2998 Matcher<const DerivedStruct&> m = Field(&AStruct::x, Ge(0)); in TEST()
3011 Matcher<signed char>(Ge(0))); in TEST()
3021 Matcher<const AStruct&> m = Field(&AStruct::x, Ge(0)); in TEST()
3029 Matcher<const AStruct&> m = Field(&AStruct::x, Ge(0)); in TEST()
3043 Matcher<const AStruct*> m = Field(&AStruct::x, Ge(0)); in TEST()
3053 Matcher<AStruct*> m = Field(&AStruct::x, Ge(0)); in TEST()
3063 Matcher<AStruct* const&> m = Field(&AStruct::x, Ge(0)); in TEST()
3082 Matcher<DerivedStruct*> m = Field(&AStruct::x, Ge(0)); in TEST()
3092 Matcher<const AStruct*> m = Field(&AStruct::x, Ge(0)); in TEST()
3100 Matcher<const AStruct*> m = Field(&AStruct::x, Ge(0)); in TEST()
3148 Matcher<const AClass&> m = Property(&AClass::n, Ge(0)); in TEST()
3202 Matcher<const DerivedClass&> m = Property(&AClass::n, Ge(0)); in TEST()
3217 Matcher<signed char>(Ge(0))); in TEST()
3227 Matcher<const AClass&> m = Property(&AClass::n, Ge(0)); in TEST()
3236 Matcher<const AClass&> m = Property(&AClass::n, Ge(0)); in TEST()
3250 Matcher<const AClass*> m = Property(&AClass::n, Ge(0)); in TEST()
3296 Matcher<const DerivedClass*> m = Property(&AClass::n, Ge(0)); in TEST()
3308 Matcher<const AClass*> m = Property(&AClass::n, Ge(0)); in TEST()
3317 Matcher<const AClass*> m = Property(&AClass::n, Ge(0)); in TEST()
3359 Matcher<int> matcher = ResultOf(&IntFunction, Ge(85)); in TEST()
3420 Matcher<int> matcher = ResultOf(IntFunction, Matcher<signed char>(Ge(85))); in TEST()
3467 Matcher<int> matcher_int = ResultOf(PolymorphicFunctor(), Ge(5)); in TEST()
3472 Matcher<const char*> matcher_string = ResultOf(PolymorphicFunctor(), Ge(5)); in TEST()
3545 const Matcher<int> m = AllOf(Ge(1), DivisibleBy(3)); in TEST()
3557 const Matcher<int> m = AllOf(Ge(2), Le(3)); in TEST()
3600 const Matcher<NotCopyable&> m = Ge(ByRef(value2)); in TEST()