Home | History | Annotate | Download | only in ui

Lines Matching full:operator

32     // we don't provide copy-ctor and operator= on purpose
64 operator = (rhs);
102 inline bool operator == (const Rect& rhs) const {
107 inline bool operator != (const Rect& rhs) const {
108 return !operator == (rhs);
111 // operator < defines an order which allows to use rectangles in sorted
113 bool operator < (const Rect& rhs) const;
127 Rect& operator += (const Point& rhs) {
130 Rect& operator -= (const Point& rhs) {
133 const Rect operator + (const Point& rhs) const;
134 const Rect operator - (const Point& rhs) const;