Home
last modified time | relevance | path

Searched refs:m_bottomRight (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/geometry/
DFloatRoundedRect.cpp56 …return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero(… in isZero()
74 m_bottomRight.scale(factor); in scale()
75 if (!m_bottomRight.width() || !m_bottomRight.height()) in scale()
76 m_bottomRight = FloatSize(); in scale()
94 if (m_bottomRight.width() > 0 && m_bottomRight.height() > 0) { in expand()
95 m_bottomRight.setWidth(std::max<float>(0, m_bottomRight.width() + rightWidth)); in expand()
96 m_bottomRight.setHeight(std::max<float>(0, m_bottomRight.height() + bottomWidth)); in expand()
DRoundedRect.cpp40 …return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero(… in isZero()
58 m_bottomRight.scale(factor); in scale()
59 if (!m_bottomRight.width() || !m_bottomRight.height()) in scale()
60 m_bottomRight = IntSize(); in scale()
78 if (m_bottomRight.width() > 0 && m_bottomRight.height() > 0) { in expand()
79 m_bottomRight.setWidth(max<int>(0, m_bottomRight.width() + rightWidth)); in expand()
80 m_bottomRight.setHeight(max<int>(0, m_bottomRight.height() + bottomWidth)); in expand()
114 m_bottomRight = edges.bottomRight(); in includeLogicalEdges()
133 m_bottomRight = IntSize(); in excludeLogicalEdges()
DRoundedRect.h47 , m_bottomRight(bottomRight) in Radii()
54 void setBottomRight(const IntSize& size) { m_bottomRight = size; } in setBottomRight()
58 const IntSize& bottomRight() const { return m_bottomRight; } in bottomRight()
75 IntSize m_bottomRight; variable
DFloatRoundedRect.h47 , m_bottomRight(bottomRight) in Radii()
54 void setBottomRight(const FloatSize& size) { m_bottomRight = size; } in setBottomRight()
58 const FloatSize& bottomRight() const { return m_bottomRight; } in bottomRight()
72 FloatSize m_bottomRight; variable
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DBorderData.h41 , m_bottomRight(Length(0, Fixed), Length(0, Fixed)) in BorderData()
58 if (!m_bottomRight.width().isZero()) in hasBorderRadius()
94 …& m_topRight == o.m_topRight && m_bottomLeft == o.m_bottomLeft && m_bottomRight == o.m_bottomRight;
112 const LengthSize& bottomRight() const { return m_bottomRight; } in bottomRight()
125 LengthSize m_bottomRight; variable
DRenderStyle.h990 …void resetBorderBottomRightRadius() { SET_VAR(surround, border.m_bottomRight, initialBorderRadius(… in resetBorderBottomRightRadius()
1008 void setBorderBottomRightRadius(LengthSize s) { SET_VAR(surround, border.m_bottomRight, s); } in setBorderBottomRightRadius()