• Home
  • Raw
  • Download

Lines Matching refs:Ge

982   Matcher<int> m1 = Ge(0);  in TEST()
990 Matcher<int> m = Ge(5); in TEST()
1085 EXPECT_CALL(helper, Call(Ge(ByRef(m)))); in TEST()
1440 EXPECT_THAT(p, Key(Ge(20))); in TEST()
1469 EXPECT_THAT(p, Key(Ge(20))); in TEST()
1577 EXPECT_THAT(p, Pair(Ge(20), HasSubstr("o"))); in TEST()
1628 EXPECT_THAT(pair, Pair(Ge(7), HasSubstr("AB"))); in TEST()
1633 ElementsAre(Pair(11, std::string("Foo")), Pair(Ge(10), Not("")))); in TEST()
1980 Matcher<const Tuple2&> m = Ge(); in TEST()
1988 Matcher<const Tuple2&> m = Ge(); in TEST()
2349 m = AllOf(Le(2), Ge(1)); in TEST()
2368 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
2403 m = AllOf(Le(2), Ge(1)); in TEST()
2417 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
2427 m = AllOf(Le(2), Ge(1)); in TEST()
2441 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
2536 m = AnyOf(Le(1), Ge(3)); in TEST()
2627 m = AnyOf(Le(1), Ge(3)); in TEST()
2649 m = AnyOf(Le(1), Ge(3)); in TEST()
2817 EXPECT_TRUE(Matches(Ge(0))(1)); in TEST()
2862 EXPECT_FALSE(ExplainMatchResult(Ge(42), 1.5, &listener2)); in TEST()
2977 ASSERT_THAT(5, Ge(2)) << "This should succeed."; in TEST()
2979 EXPECT_THAT(2, AllOf(Le(7), Ge(0))) << "This should succeed too."; in TEST()
2997 EXPECT_THAT(n, AllOf(Le(7), Ge(5))), in TEST()
3478 const Matcher<int*> m = Pointee(Ge(0)); in TEST()
3488 const Matcher<const double*> m = Pointee(Ge(0)); in TEST()
3498 const Matcher<int* const &> m = Pointee(Ge(0)); in TEST()
3508 const Matcher<double* &> m = Pointee(Ge(0)); in TEST()
3735 Matcher<AStruct> m = Field(&AStruct::x, Ge(0)); in TEST()
3736 Matcher<AStruct> m_with_name = Field("x", &AStruct::x, Ge(0)); in TEST()
3750 Matcher<AStruct> m = Field(&AStruct::y, Ge(0.0)); in TEST()
3751 Matcher<AStruct> m_with_name = Field("y", &AStruct::y, Ge(0.0)); in TEST()
3789 Matcher<const AStruct&> m = Field(&AStruct::x, Ge(0)); in TEST()
3802 Matcher<const DerivedStruct&> m = Field(&AStruct::x, Ge(0)); in TEST()
3815 Matcher<signed char>(Ge(0))); in TEST()
3825 Matcher<const AStruct&> m = Field(&AStruct::x, Ge(0)); in TEST()
3832 Matcher<const AStruct&> m = Field("field_name", &AStruct::x, Ge(0)); in TEST()
3841 Matcher<const AStruct&> m = Field(&AStruct::x, Ge(0)); in TEST()
3854 Matcher<const AStruct&> m = Field("field_name", &AStruct::x, Ge(0)); in TEST()
3868 Matcher<const AStruct*> m = Field(&AStruct::x, Ge(0)); in TEST()
3878 Matcher<AStruct*> m = Field(&AStruct::x, Ge(0)); in TEST()
3888 Matcher<AStruct* const&> m = Field(&AStruct::x, Ge(0)); in TEST()
3907 Matcher<DerivedStruct*> m = Field(&AStruct::x, Ge(0)); in TEST()
3917 Matcher<const AStruct*> m = Field(&AStruct::x, Ge(0)); in TEST()
3924 Matcher<const AStruct*> m = Field("field_name", &AStruct::x, Ge(0)); in TEST()
3933 Matcher<const AStruct*> m = Field(&AStruct::x, Ge(0)); in TEST()
3947 Matcher<const AStruct*> m = Field("field_name", &AStruct::x, Ge(0)); in TEST()
4002 Matcher<const AClass&> m = Property(&AClass::n, Ge(0)); in TEST()
4003 Matcher<const AClass&> m_with_name = Property("n", &AClass::n, Ge(0)); in TEST()
4080 Matcher<const DerivedClass&> m = Property(&AClass::n, Ge(0)); in TEST()
4095 Matcher<signed char>(Ge(0))); in TEST()
4098 Property("n", &AClass::n, Matcher<signed char>(Ge(0))); in TEST()
4110 Matcher<const AClass&> m = Property(&AClass::n, Ge(0)); in TEST()
4118 Matcher<const AClass&> m = Property("fancy_name", &AClass::n, Ge(0)); in TEST()
4127 Matcher<const AClass&> m = Property(&AClass::n, Ge(0)); in TEST()
4140 Matcher<const AClass&> m = Property("fancy_name", &AClass::n, Ge(0)); in TEST()
4154 Matcher<const AClass*> m = Property(&AClass::n, Ge(0)); in TEST()
4200 Matcher<const DerivedClass*> m = Property(&AClass::n, Ge(0)); in TEST()
4212 Matcher<const AClass*> m = Property(&AClass::n, Ge(0)); in TEST()
4220 Matcher<const AClass*> m = Property("fancy_name", &AClass::n, Ge(0)); in TEST()
4229 Matcher<const AClass*> m = Property(&AClass::n, Ge(0)); in TEST()
4245 Matcher<const AClass*> m = Property("fancy_name", &AClass::n, Ge(0)); in TEST()
4289 Matcher<int> matcher = ResultOf(&IntFunction, Ge(85)); in TEST()
4350 Matcher<int> matcher = ResultOf(IntFunction, Matcher<signed char>(Ge(85))); in TEST()
4399 Matcher<int> matcher_int = ResultOf(PolymorphicFunctor(), Ge(5)); in TEST()
4404 Matcher<const char*> matcher_string = ResultOf(PolymorphicFunctor(), Ge(5)); in TEST()
4505 const Matcher<int> m = AllOf(Ge(1), DivisibleBy(3)); in TEST()
4517 const Matcher<int> m = AllOf(Ge(2), Le(3)); in TEST()
4560 const Matcher<NotCopyable&> m = Ge(ByRef(value2)); in TEST()
5609 {Eq(1), Ne(-2), Ge(3), Le(4), Eq(5)})); in TEST()
5611 {Eq(1), Ne(-2), Ge(3), Le(4), Eq(6)}))); in TEST()