Home | History | Annotate | Download | only in geometry

Lines Matching refs:IntSize

43         Radii(const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight)
51 void setTopLeft(const IntSize& size) { m_topLeft = size; }
52 void setTopRight(const IntSize& size) { m_topRight = size; }
53 void setBottomLeft(const IntSize& size) { m_bottomLeft = size; }
54 void setBottomRight(const IntSize& size) { m_bottomRight = size; }
55 const IntSize& topLeft() const { return m_topLeft; }
56 const IntSize& topRight() const { return m_topRight; }
57 const IntSize& bottomLeft() const { return m_bottomLeft; }
58 const IntSize& bottomRight() const { return m_bottomRight; }
72 IntSize m_topLeft;
73 IntSize m_topRight;
74 IntSize m_bottomLeft;
75 IntSize m_bottomRight;
80 RoundedRect(const IntRect&, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight);
93 void move(const IntSize& size) { m_rect.move(size); }