Searched refs:m_bottomLeft (Results 1 - 4 of 4) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/rendering/style/
H A DBorderData.h40 , m_bottomLeft(Length(0, Fixed), Length(0, Fixed))
56 if (!m_bottomLeft.width().isZero())
94 && m_topLeft == o.m_topLeft && m_topRight == o.m_topRight && m_bottomLeft == o.m_bottomLeft && m_bottomRight == o.m_bottomRight;
111 const LengthSize& bottomLeft() const { return m_bottomLeft; }
124 LengthSize m_bottomLeft; member in class:WebCore::BorderData
H A DRenderStyle.h1056 void resetBorderBottomLeftRadius() { SET_VAR(surround, border.m_bottomLeft, initialBorderRadius()); }
1074 void setBorderBottomLeftRadius(LengthSize s) { SET_VAR(surround, border.m_bottomLeft, s); }
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DRoundedRect.cpp39 return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero();
54 m_bottomLeft.scale(factor);
55 if (!m_bottomLeft.width() || !m_bottomLeft.height())
56 m_bottomLeft = IntSize();
73 if (m_bottomLeft.width() > 0 && m_bottomLeft.height() > 0) {
74 m_bottomLeft.setWidth(max<int>(0, m_bottomLeft.width() + leftWidth));
75 m_bottomLeft
[all...]
H A DRoundedRect.h44 , m_bottomLeft(bottomLeft)
51 void setBottomLeft(const IntSize& size) { m_bottomLeft = size; }
55 const IntSize& bottomLeft() const { return m_bottomLeft; }
72 IntSize m_bottomLeft; member in class:WebCore::RoundedRect::Radii

Completed in 135 milliseconds