Home | History | Annotate | Download | only in range

Lines Matching refs:Range

5 #include "ui/gfx/range/range.h"
16 Range Range::Intersect(const Range& range) const {
17 uint32_t min = std::max(GetMin(), range.GetMin());
18 uint32_t max = std::min(GetMax(), range.GetMax());
23 return Range(min, max);
26 std::string Range::ToString() const {
30 std::ostream& operator<<(std::ostream& os, const Range& range) {
31 return os << range.ToString();