Lines Matching defs:RRect
35 class RRect final {
37 RRect() = default;
38 ~RRect() = default;
40 explicit RRect(const Rect& rect) : rect_(rect) {}
41 RRect(double x, double y, double width, double height)
46 static RRect MakeRect(const Rect& rect)
48 RRect rrect;
53 static RRect MakeRRect(const Rect& rect, const Radius& radius)
55 RRect rrect;
60 static RRect MakeRRect(const Rect& rect, double x, double y)
62 RRect rrect;
67 static RRect MakeOval(const Rect& rect)
69 RRect rrect;
137 bool operator==(const RRect& rrect) const
145 RRect& operator+=(const Offset& offset)