Lines Matching full:rhs
66 inline void set(const Rect& rhs) {
67 operator = (rhs);
105 inline bool operator == (const Rect& rhs) const {
106 return (left == rhs.left) && (top == rhs.top) &&
107 (right == rhs.right) && (bottom == rhs.bottom);
110 inline bool operator != (const Rect& rhs) const {
111 return !operator == (rhs);
116 bool operator < (const Rect& rhs) const;
130 Rect& operator += (const Point& rhs) {
131 return offsetBy(rhs.x, rhs.y);
133 Rect& operator -= (const Point& rhs) {
134 return offsetBy(-rhs.x, -rhs.y);
136 const Rect operator + (const Point& rhs) const;
137 const Rect operator - (const Point& rhs) const;