Home | History | Annotate | Download | only in compile

Lines Matching refs:Range

67  * A range of pixel values, starting at 'start' and ending before 'end'
70 struct Range {
74 explicit Range() = default;
75 inline explicit Range(int32_t s, int32_t e) : start(s), end(e) {}
78 inline bool operator==(const Range& left, const Range& right) {
163 std::vector<Range> horizontal_stretch_regions;
170 std::vector<Range> vertical_stretch_regions;
203 ::std::ostream& operator<<(::std::ostream& out, const Range& range);