Lines Matching refs:rhs
63 inline void set(const Rect& rhs) { in set() argument
64 operator = (rhs); in set()
102 inline bool operator == (const Rect& rhs) const {
103 return (left == rhs.left) && (top == rhs.top) &&
104 (right == rhs.right) && (bottom == rhs.bottom);
107 inline bool operator != (const Rect& rhs) const {
108 return !operator == (rhs);
113 bool operator < (const Rect& rhs) const;
127 Rect& operator += (const Point& rhs) {
128 return offsetBy(rhs.x, rhs.y);
130 Rect& operator -= (const Point& rhs) {
131 return offsetBy(-rhs.x, -rhs.y);
133 const Rect operator + (const Point& rhs) const;
134 const Rect operator - (const Point& rhs) const;