Searched refs:max_ (Results 1 - 2 of 2) sorted by relevance

/gem5/ext/googletest/googlemock/src/
H A Dgmock-cardinalities.cc54 max_(max >= min_ ? max : min_) {
75 virtual int ConservativeUpperBound() const { return max_; }
78 return min_ <= call_count && call_count <= max_;
82 return call_count >= max_;
89 const int max_; member in class:testing::__anon11::BetweenCardinalityImpl
110 if (max_ == 0) {
112 } else if (max_ == INT_MAX) {
115 *os << "called at most " << FormatTimes(max_);
117 } else if (min_ == max_) {
119 } else if (max_
123 *os << "called between " << min_ << " and " << max_ << " times"; local
[all...]
/gem5/ext/googletest/googlemock/test/
H A Dgmock-matchers_test.cc2724 max_(Floating::Max()),
2802 const RawType max_; member in class:testing::gmock_matchers_test::FloatingPointTest
2854 Matcher<RawType> m5 = matcher_maker(ParentType::max_, ParentType::max_);
2855 EXPECT_TRUE(m5.Matches(ParentType::max_));
2856 EXPECT_FALSE(m5.Matches(-ParentType::max_));
2858 Matcher<RawType> m6 = matcher_maker(-ParentType::max_, ParentType::max_);
2859 EXPECT_FALSE(m6.Matches(ParentType::max_));
2860 EXPECT_TRUE(m6.Matches(-ParentType::max_));
[all...]

Completed in 21 milliseconds