• Home
  • Raw
  • Download

Lines Matching refs:Eq

82 using testing::Eq;
308 Matcher<bool> m1 = Eq(false); in TEST()
313 m1 = Eq(true); in TEST()
463 Matcher<int> m = MatcherCast<int>(Eq(5)); in TEST()
488 Matcher<double> m1 = Eq(2.0); in TEST()
504 Matcher<const int&> m1 = Eq(0); in TEST()
512 Matcher<int&> m1 = Eq(0); in TEST()
520 Matcher<int> m1 = Eq(0); in TEST()
528 Matcher<int> m1 = Eq(0); in TEST()
538 Matcher<int> m1 = Eq(0); in TEST()
549 Matcher<char> m2 = SafeMatcherCast<char>(Eq(32)); in TEST()
572 Matcher<Base*> m1 = Eq(&d); in TEST()
595 Matcher<int> m1 = Eq(0); in TEST()
603 Matcher<int> m1 = Eq(0); in TEST()
613 Matcher<int> m1 = Eq(0); in TEST()
687 Matcher<const char*> m1 = Eq(a1); in TEST()
704 Matcher<Unprintable> m = Eq(Unprintable()); in TEST()
711 Matcher<int> m1 = Eq(1); in TEST()
715 Matcher<char> m2 = Eq(1); in TEST()
1759 Matcher<const Tuple2&> m = Eq(); in TEST()
1766 Matcher<const Tuple2&> m = Eq(); in TEST()
1848 m = Not(Eq(2)); in TEST()
1855 Matcher<int> m = Not(Eq(5)); in TEST()
2064 m = AnyOf(Lt(0), Eq(1), Eq(2)); in TEST()
2070 m = AnyOf(Lt(0), Eq(1), Eq(2), Eq(3)); in TEST()
2105 m = AnyOf(Lt(0), Eq(1), Eq(2)); in TEST()
2110 m = AnyOf(Lt(0), Eq(1), Eq(2), Eq(3)); in TEST()
2133 m = AnyOf(Lt(0), Eq(1), Eq(2)); in TEST()
2138 m = AnyOf(Lt(0), Eq(1), Eq(2), Eq(3)); in TEST()
2279 EXPECT_FALSE(Matches(Eq('a'))('b')); in TEST()
2286 EXPECT_TRUE(Matches(AllOf(Ref(n), Eq(0)))(n)); in TEST()
2293 Matcher<int> eq5 = Eq(5); in TEST()
2307 const Matcher<int> is_zero = Eq(0); in TEST()
2333 const Matcher<const double&> is_zero = Eq(0); in TEST()
2344 EXPECT_THAT(0, Really(Eq(0))); in TEST()
2354 EXPECT_THAT('a', Not(AllArgs(Eq('b')))); in TEST()
3236 Matcher<int> matcher = ResultOf(&IntToStringFunction, Eq(string("foo"))); in TEST()
3268 Matcher<int> matcher = ResultOf(&IntFunction, Eq(80)); in TEST()
3327 ResultOf(static_cast<string(*)(int dummy)>(NULL), Eq(string("foo"))), in TEST()
3348 Matcher<int> matcher = ResultOf(Functor(), Eq(string("foo"))); in TEST()
3385 Matcher<const int&> matcher2 = ResultOf(ReferencingFunction, Eq(&n)); in TEST()
3389 Matcher<const int&> matcher3 = ResultOf(ReferencingFunctor(), Eq(&n)); in TEST()
3488 const Matcher<const NotCopyable&> m = Eq(ByRef(const_value1)); in TEST()
3790 ExplainMatchFailureTupleTo(make_tuple(Matcher<char>(Eq('a')), GreaterThan(5)), in TEST()
3795 ExplainMatchFailureTupleTo(make_tuple(GreaterThan(5), Matcher<char>(Eq('a'))), in TEST()
3804 ExplainMatchFailureTupleTo(make_tuple(GreaterThan(5), Matcher<char>(Eq('a'))), in TEST()