Home | History | Annotate | Download | only in ui

Lines Matching defs:operator

33     // we don't provide copy-ctor and operator= on purpose
114 inline bool operator == (const Rect& rhs) const {
119 inline bool operator != (const Rect& rhs) const {
120 return !operator == (rhs);
123 // operator < defines an order which allows to use rectangles in sorted
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) {
133 Rect& operator -= (const Point& rhs) {
170 inline void set(const Rect& rhs) { operator = (rhs); }