Lines Matching refs:m4
558 Matcher<int> m4 = MatcherCast<int>(m3);
562 EXPECT_TRUE(m4.Matches(1));
563 EXPECT_FALSE(m4.Matches(0));
673 Matcher<Derived&> m4 = SafeMatcherCast<Derived&>(m3);
674 EXPECT_TRUE(m4.Matches(d));
675 EXPECT_FALSE(m4.Matches(d2));
1303 Matcher<pair<int, const std::string> > m4 = Pair(25, "42");
1505 Matcher<const ::std::wstring&> m4 = StrEq(str);
1506 EXPECT_TRUE(m4.Matches(str));
1523 Matcher<const ::std::wstring&> m4 = StrEq(str);
1524 EXPECT_EQ("is equal to L\"012\\04500800\"", Describe(m4));
1696 Matcher<const ::wstring&> m4 = StrEq(str);
1697 EXPECT_TRUE(m4.Matches(str));
1714 Matcher<const ::wstring&> m4 = StrEq(str);
1715 EXPECT_EQ("is equal to L\"012\\04500800\"", Describe(m4));
2137 Matcher<const int&> m4 = AllOf(greater_than_5, less_than_10, less_than_10);
2322 Matcher<const int&> m4 = AnyOf(greater_than_5, less_than_10, less_than_10);
2698 Matcher<RawType> m4 = matcher_maker(-infinity_);
2699 EXPECT_TRUE(m4.Matches(-close_to_infinity_));
2787 Matcher<RawType> m4 = matcher_maker(-ParentType::infinity_, 0.0);
2788 EXPECT_TRUE(m4.Matches(-ParentType::infinity_));
2789 EXPECT_FALSE(m4.Matches(-ParentType::close_to_infinity_));
2790 EXPECT_FALSE(m4.Matches(ParentType::infinity_));
3964 Matcher<vector<int> > m4 = SizeIs(GreaterThan(1));
3970 Explain(m4, container));
3977 Explain(m4, container));