Lines Matching defs:min
60 inline bool compare (const T& min, const T& reported) { return min <= reported; }
74 float min;
76 FloatRange (float min_, float max_) : min(min_), max(max_) {}
79 std::ostream& operator<< (std::ostream& str, const FloatRange& range) { return str << range.min << ", " << range.max; }
161 bool compare<Boolean> (const Boolean& min, const Boolean& reported)
163 return !min.value || (min.value && reported.value);
167 bool compare<NegInt> (const NegInt& min, const NegInt& reported)
170 return reported.value <= min.value;
174 bool compare<FloatRange> (const FloatRange& min, const FloatRange& reported)
176 return reported.min <= min.min && min.max <= reported.max;
180 bool compare<AlignmentInt> (const AlignmentInt& min, const AlignmentInt& reported)
183 return reported.value <= min.value;