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

/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DBorderData.h39 , m_topRight(Length(0, Fixed), Length(0, Fixed))
54 if (!m_topRight.width().isZero())
94 && m_topLeft == o.m_topLeft && m_topRight == o.m_topRight && m_bottomLeft == o.m_bottomLeft && m_bottomRight == o.m_bottomRight;
105 && m_topRight == o.m_topRight
123 const LengthSize& topRight() const { return m_topRight; }
136 LengthSize m_topRight; member in class:WebCore::BorderData
H A DRenderStyle.h1030 void resetBorderTopRightRadius() { SET_VAR(surround, border.m_topRight, initialBorderRadius()); }
1048 void setBorderTopRightRadius(const LengthSize& s) { SET_VAR(surround, border.m_topRight, 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();
68 m_topRight.scale(factor);
69 if (!m_topRight.width() || !m_topRight.height())
70 m_topRight = FloatSize();
86 if (m_topRight.width() > 0 && m_topRight.height() > 0) {
87 m_topRight.setWidth(std::max<float>(0, m_topRight.width() + rightWidth));
88 m_topRight
[all...]
H A DRoundedRect.cpp40 return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero();
52 m_topRight.scale(factor);
53 if (!m_topRight.width() || !m_topRight.height())
54 m_topRight = IntSize();
70 if (m_topRight.width() > 0 && m_topRight.height() > 0) {
71 m_topRight.setWidth(max<int>(0, m_topRight.width() + rightWidth));
72 m_topRight
[all...]
H A DFloatRoundedRect.h46 , m_topRight(topRight)
54 , m_topRight(intRadii.topRight())
61 void setTopRight(const FloatSize& size) { m_topRight = size; }
65 const FloatSize& topRight() const { return m_topRight; }
79 FloatSize m_topRight; member in class:WebCore::FloatRoundedRect::Radii
H A DRoundedRect.h45 , m_topRight(topRight)
52 void setTopRight(const IntSize& size) { m_topRight = size; }
56 const IntSize& topRight() const { return m_topRight; }
73 IntSize m_topRight; member in class:WebCore::RoundedRect::Radii

Completed in 125 milliseconds