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

/external/chromium_org/third_party/WebKit/Source/core/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;
106 && m_bottomLeft == o.m_bottomLeft
124 const LengthSize& bottomLeft() const { return m_bottomLeft; }
137 LengthSize m_bottomLeft; member in class:WebCore::BorderData
H A DRenderStyle.h1031 void resetBorderBottomLeftRadius() { SET_VAR(surround, border.m_bottomLeft, initialBorderRadius()); }
1049 void setBorderBottomLeftRadius(const LengthSize& s) { SET_VAR(surround, border.m_bottomLeft, s); }
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatRoundedRect.cpp56 return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero();
71 m_bottomLeft.scale(factor);
72 if (!m_bottomLeft.width() || !m_bottomLeft.height())
73 m_bottomLeft = FloatSize();
90 if (m_bottomLeft.width() > 0 && m_bottomLeft.height() > 0) {
91 m_bottomLeft.setWidth(std::max<float>(0, m_bottomLeft.width() + leftWidth));
92 m_bottomLeft
[all...]
H A DRoundedRect.cpp40 return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero();
55 m_bottomLeft.scale(factor);
56 if (!m_bottomLeft.width() || !m_bottomLeft.height())
57 m_bottomLeft = IntSize();
74 if (m_bottomLeft.width() > 0 && m_bottomLeft.height() > 0) {
75 m_bottomLeft.setWidth(max<int>(0, m_bottomLeft.width() + leftWidth));
76 m_bottomLeft
[all...]
H A DFloatRoundedRect.h47 , m_bottomLeft(bottomLeft)
55 , m_bottomLeft(intRadii.bottomLeft())
62 void setBottomLeft(const FloatSize& size) { m_bottomLeft = size; }
66 const FloatSize& bottomLeft() const { return m_bottomLeft; }
80 FloatSize m_bottomLeft; member in class:WebCore::FloatRoundedRect::Radii
H A DRoundedRect.h46 , m_bottomLeft(bottomLeft)
53 void setBottomLeft(const IntSize& size) { m_bottomLeft = size; }
57 const IntSize& bottomLeft() const { return m_bottomLeft; }
74 IntSize m_bottomLeft; member in class:WebCore::RoundedRect::Radii

Completed in 609 milliseconds