Lines Matching defs:max_
1040 max_(Floating::Max()),
1115 const RawType max_;
1160 Matcher<RawType> m5 = matcher_maker(ParentType::max_, ParentType::max_);
1161 EXPECT_TRUE(m5.Matches(ParentType::max_));
1162 EXPECT_FALSE(m5.Matches(-ParentType::max_));
1164 Matcher<RawType> m6 = matcher_maker(-ParentType::max_, ParentType::max_);
1165 EXPECT_FALSE(m6.Matches(ParentType::max_));
1166 EXPECT_TRUE(m6.Matches(-ParentType::max_));
1168 Matcher<RawType> m7 = matcher_maker(ParentType::max_, 0);
1169 EXPECT_TRUE(m7.Matches(ParentType::max_));
1170 EXPECT_FALSE(m7.Matches(-ParentType::max_));
1172 Matcher<RawType> m8 = matcher_maker(-ParentType::max_, 0);
1173 EXPECT_FALSE(m8.Matches(ParentType::max_));
1174 EXPECT_TRUE(m8.Matches(-ParentType::max_));
1179 matcher_maker(ParentType::max_, ParentType::infinity_);
1180 EXPECT_TRUE(m8.Matches(-ParentType::max_));