Lines Matching defs:other
134 bool operator==(const BasicShape& other) const
136 return (basicShapeType_ == other.GetBasicShapeType() && width_ == other.GetWidth() &&
137 height_ == other.GetHeight() && offset_ == other.GetOffset() && color_ == other.GetColor());
140 BasicShape& operator=(const BasicShape& other)
142 if (this != &other) {
143 basicShapeType_ = other.basicShapeType_;
144 width_ = other.width_;
145 height_ = other.height_;
146 offset_ = other.offset_;
147 color_ = other.color_;
332 bool operator==(const Circle& other) const
334 return (radius_ == other.GetRadius() && axisX_ == other.GetAxisX() && axisY_ == other.GetAxisY());
395 bool operator==(const Ellipse& other) const
397 return (radiusX_ == other.GetRadiusX() && radiusY_ == other.GetRadiusY() && axisX_ == other.GetAxisX() &&
398 axisY_ == other.GetAxisY());
431 bool operator==(const Polygon& other) const
433 return points_ == other.GetPoints();
458 bool operator==(const Path& other) const
460 return value_ == other.GetValue();