Home | History | Annotate | Download | only in test

Lines Matching refs:max_

2669         max_(Floating::Max()),
2747 const RawType max_;
2793 Matcher<RawType> m5 = matcher_maker(ParentType::max_, ParentType::max_);
2794 EXPECT_TRUE(m5.Matches(ParentType::max_));
2795 EXPECT_FALSE(m5.Matches(-ParentType::max_));
2797 Matcher<RawType> m6 = matcher_maker(-ParentType::max_, ParentType::max_);
2798 EXPECT_FALSE(m6.Matches(ParentType::max_));
2799 EXPECT_TRUE(m6.Matches(-ParentType::max_));
2801 Matcher<RawType> m7 = matcher_maker(ParentType::max_, 0);
2802 EXPECT_TRUE(m7.Matches(ParentType::max_));
2803 EXPECT_FALSE(m7.Matches(-ParentType::max_));
2805 Matcher<RawType> m8 = matcher_maker(-ParentType::max_, 0);
2806 EXPECT_FALSE(m8.Matches(ParentType::max_));
2807 EXPECT_TRUE(m8.Matches(-ParentType::max_));
2812 ParentType::max_, ParentType::infinity_);
2813 EXPECT_TRUE(m8.Matches(-ParentType::max_));