Lines Matching refs:other
50 AvoidRect(const AvoidRect& other) : posX(other.posX), posY(other.posY),
51 width(other.width), height(other.height) {}
58 AvoidRect& operator=(const AvoidRect& other)
60 if (this != &other) {
61 this->posX = other.posX;
62 this->posY = other.posY;
63 this->width = other.width;
64 this->height = other.height;
81 AvoidAreas(const AvoidAreas& other) : topRect(other.topRect), leftRect(other.leftRect),
82 rightRect(other.rightRect), bottomRect(other.bottomRect) {}
90 AvoidAreas& operator=(const AvoidAreas& other)
92 if (this != &other) {
93 this->topRect = other.topRect;
94 this->leftRect = other.leftRect;
95 this->rightRect = other.rightRect;
96 this->bottomRect = other.bottomRect;