Lines Matching refs:rhs
114 inline bool operator == (const Rect& rhs) const {
115 return (left == rhs.left) && (top == rhs.top) &&
116 (right == rhs.right) && (bottom == rhs.bottom);
119 inline bool operator != (const Rect& rhs) const {
120 return !operator == (rhs);
125 bool operator < (const Rect& rhs) const;
127 const Rect operator + (const Point& rhs) const;
128 const Rect operator - (const Point& 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);
170 inline void set(const Rect& rhs) { operator = (rhs); } in set() argument