Lines Matching refs:Eq

68 // to write "v" instead of "Eq(v)" where a Matcher is expected, which
331 // EXPECT_CALL(foo, Bar(5)) instead of EXPECT_CALL(foo, Bar(Eq(5))) sometimes
336 // instead of Eq(str) and "foo" instead of Eq("foo") when a string
347 // Allows the user to write str instead of Eq(str) sometimes, where
351 // Allows the user to write "foo" instead of Eq("foo") sometimes.
364 // Allows the user to write str instead of Eq(str) sometimes, where
368 // Allows the user to write "foo" instead of Eq("foo") sometimes.
374 // instead of Eq(str) and "foo" instead of Eq("foo") when a StringPiece
385 // Allows the user to write str instead of Eq(str) sometimes, where
389 // Allows the user to write "foo" instead of Eq("foo") sometimes.
405 // Allows the user to write str instead of Eq(str) sometimes, where
409 // Allows the user to write "foo" instead of Eq("foo") sometimes.
419 // than one type, e.g. Eq(n) and NotNull()).
512 // Matcher but is not one yet; for example, Eq(value)) or a value (for
886 // The matcher defined here is polymorphic (for example, Eq(5) can be
1376 // The matcher defined here is polymorphic (for example, Eq() can be
1811 // (e.g. Eq(5)).
1818 // polymorphic, e.g. Eq(5).
2511 // support ==. This matcher is like Eq(), but its failure explanations provide
3739 // Note: if the parameter of Eq() were declared as const T&, Eq("foo")
3742 inline internal::EqMatcher<T> Eq(T x) { return internal::EqMatcher<T>(x); }
3747 Matcher<T>::Matcher(T value) { *this = Eq(value); }
3750 // and equal to rhs. A user may need to use this instead of Eq(...)
3753 // TypedEq<T>(x) is just a convenient short-hand for Matcher<T>(Eq(x))
3758 // it yet as those are used much less than Eq() in practice. A user
3762 inline Matcher<Lhs> TypedEq(const Rhs& rhs) { return Eq(rhs); }
4082 inline internal::Eq2Matcher Eq() { return internal::Eq2Matcher(); }
4144 // This matcher behaves like Eq(), but in the event of mismatch lists the
4280 // EXPECT_THAT(user_ids, Contains(Eq(::std::string("tom"))));
4295 // EXPECT_THAT(page_ids, Each(Eq(1)));
4296 // EXPECT_THAT(page_ids, Each(Eq(77)));
4312 // EXPECT_THAT(user_ids, Not(Each(Eq(::std::string("tom")))));
4376 // EXPECT_CALL(foo, Bar(_, _)).With(AllArgs(Eq()));
4380 // EXPECT_CALL(foo, Bar(_, _)).With(Eq());