Home | History | Annotate | Download | only in test

Lines Matching refs:m1

641   const Matcher<int> m1 = IsEven2();
642 EXPECT_EQ("is even", Describe(m1));
643 EXPECT_EQ("is odd", DescribeNegation(m1));
652 const Matcher<int> m1 = IsEven2();
653 EXPECT_EQ("OK", Explain(m1, 4));
654 EXPECT_EQ("% 2 == 1", Explain(m1, 5));
675 const Matcher< ::std::string> m1 = IsEmptyString();
676 EXPECT_TRUE(m1.Matches(""));
953 MATCHER_P3(TwoOf, m1, m2, m3, "") {
954 const int count = static_cast<int>(Value(arg, m1))