• Home
  • Raw
  • Download

Lines Matching refs:Eq

91 using testing::Eq;
338 Matcher<bool> m1 = Eq(false); in TEST()
343 m1 = Eq(true); in TEST()
531 Matcher<int> m = MatcherCast<int>(Eq(5)); in TEST()
556 Matcher<double> m1 = Eq(2.0); in TEST()
572 Matcher<const int&> m1 = Eq(0); in TEST()
580 Matcher<int&> m1 = Eq(0); in TEST()
588 Matcher<int> m1 = Eq(0); in TEST()
596 Matcher<int> m1 = Eq(0); in TEST()
606 Matcher<int> m1 = Eq(0); in TEST()
638 MatcherCast<ConvertibleFromAny>(Eq(ConvertibleFromAny(1))); in TEST()
677 Matcher<char> m2 = SafeMatcherCast<char>(Eq(32)); in TEST()
700 Matcher<Base*> m1 = Eq(&d); in TEST()
723 Matcher<int> m1 = Eq(0); in TEST()
731 Matcher<int> m1 = Eq(0); in TEST()
741 Matcher<int> m1 = Eq(0); in TEST()
755 SafeMatcherCast<ConvertibleFromAny>(Eq(ConvertibleFromAny(1))); in TEST()
859 Matcher<const char*> m1 = Eq(a1); in TEST()
876 Matcher<Unprintable> m = Eq(Unprintable()); in TEST()
883 Matcher<int> m1 = Eq(1); in TEST()
887 Matcher<char> m2 = Eq(1); in TEST()
1931 Matcher<const Tuple2&> m = Eq(); in TEST()
1938 Matcher<const Tuple2&> m = Eq(); in TEST()
2020 m = Not(Eq(2)); in TEST()
2027 Matcher<int> m = Not(Eq(5)); in TEST()
2258 m = AnyOf(Lt(0), Eq(1), Eq(2)); in TEST()
2264 m = AnyOf(Lt(0), Eq(1), Eq(2), Eq(3)); in TEST()
2317 m = AnyOf(Lt(0), Eq(1), Eq(2)); in TEST()
2322 m = AnyOf(Lt(0), Eq(1), Eq(2), Eq(3)); in TEST()
2345 m = AnyOf(Lt(0), Eq(1), Eq(2)); in TEST()
2350 m = AnyOf(Lt(0), Eq(1), Eq(2), Eq(3)); in TEST()
2514 EXPECT_FALSE(Matches(Eq('a'))('b')); in TEST()
2521 EXPECT_TRUE(Matches(AllOf(Ref(n), Eq(0)))(n)); in TEST()
2528 Matcher<int> eq5 = Eq(5); in TEST()
2542 const Matcher<int> is_zero = Eq(0); in TEST()
2568 const Matcher<const double&> is_zero = Eq(0); in TEST()
2579 EXPECT_THAT(0, Really(Eq(0))); in TEST()
2589 EXPECT_THAT('a', Not(AllArgs(Eq('b')))); in TEST()
3799 Matcher<int> matcher = ResultOf(&IntToStringFunction, Eq(string("foo"))); in TEST()
3831 Matcher<int> matcher = ResultOf(&IntFunction, Eq(80)); in TEST()
3890 ResultOf(static_cast<string(*)(int dummy)>(NULL), Eq(string("foo"))), in TEST()
3911 Matcher<int> matcher = ResultOf(Functor(), Eq(string("foo"))); in TEST()
3948 Matcher<const int&> matcher2 = ResultOf(ReferencingFunction, Eq(&n)); in TEST()
3952 Matcher<const int&> matcher3 = ResultOf(ReferencingFunctor(), Eq(&n)); in TEST()
4051 const Matcher<const NotCopyable&> m = Eq(ByRef(const_value1)); in TEST()
4768 {Eq(1), Eq(2), Eq(3), Eq(4), Eq(5)})); in TEST()
4770 {Eq(1), Eq(2), Eq(3), Eq(4), Eq(6)}))); in TEST()
4780 {Eq(1), Ne(-2), Ge(3), Le(4), Eq(5)})); in TEST()
4782 {Eq(1), Ne(-2), Ge(3), Le(4), Eq(6)}))); in TEST()
4847 mv[50] = Eq(0); in TEST_F()
4878 EXPECT_THAT(listener.str(), Eq("which has 1 element")); in TEST_F()
4886 EXPECT_THAT(listener.str(), Eq("")); in TEST_F()
4898 Eq("where the following matchers don't match any elements:\n" in TEST_F()
4911 Eq("where the following elements don't match any matchers:\n" in TEST_F()
4924 Eq("where" in TEST_F()
4972 Eq("is empty")); in TEST_F()
4975 Eq("has 1 element and that element is equal to 345")); in TEST_F()
4978 Eq("has 3 elements and there exists some permutation " in TEST_F()
4987 Eq("isn't empty")); in TEST_F()
4990 Eq("doesn't have 1 element, or has 1 element that isn't equal to 345")); in TEST_F()
4993 Eq("doesn't have 3 elements, or there exists no permutation " in TEST_F()
5295 ExplainMatchFailureTupleTo(make_tuple(Matcher<char>(Eq('a')), GreaterThan(5)), in TEST()
5300 ExplainMatchFailureTupleTo(make_tuple(GreaterThan(5), Matcher<char>(Eq('a'))), in TEST()
5309 ExplainMatchFailureTupleTo(make_tuple(GreaterThan(5), Matcher<char>(Eq('a'))), in TEST()