Home | History | Annotate | Download | only in test

Lines Matching defs:m6

3265     Matcher<const RawType&> m6 = matcher_maker(0.0);
3266 EXPECT_TRUE(m6.Matches(-0.0));
3267 EXPECT_TRUE(m6.Matches(close_to_positive_zero_));
3268 EXPECT_FALSE(m6.Matches(1.0));
3352 Matcher<RawType> m6 = matcher_maker(-ParentType::max_, ParentType::max_);
3353 EXPECT_FALSE(m6.Matches(ParentType::max_));
3354 EXPECT_TRUE(m6.Matches(-ParentType::max_));