Searched refs:m_bottomLeft (Results 1 – 6 of 6) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/platform/geometry/ |
D | FloatRoundedRect.cpp | 56 …return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero(… in isZero() 71 m_bottomLeft.scale(factor); in scale() 72 if (!m_bottomLeft.width() || !m_bottomLeft.height()) in scale() 73 m_bottomLeft = FloatSize(); in scale() 90 if (m_bottomLeft.width() > 0 && m_bottomLeft.height() > 0) { in expand() 91 m_bottomLeft.setWidth(std::max<float>(0, m_bottomLeft.width() + leftWidth)); in expand() 92 m_bottomLeft.setHeight(std::max<float>(0, m_bottomLeft.height() + bottomWidth)); in expand()
|
D | RoundedRect.cpp | 40 …return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero(… in isZero() 55 m_bottomLeft.scale(factor); in scale() 56 if (!m_bottomLeft.width() || !m_bottomLeft.height()) in scale() 57 m_bottomLeft = IntSize(); in scale() 74 if (m_bottomLeft.width() > 0 && m_bottomLeft.height() > 0) { in expand() 75 m_bottomLeft.setWidth(max<int>(0, m_bottomLeft.width() + leftWidth)); in expand() 76 m_bottomLeft.setHeight(max<int>(0, m_bottomLeft.height() + bottomWidth)); in expand() 103 m_bottomLeft = edges.bottomLeft(); in includeLogicalEdges() 113 m_bottomLeft = edges.bottomLeft(); in includeLogicalEdges() 122 m_bottomLeft = IntSize(); in excludeLogicalEdges() [all …]
|
D | RoundedRect.h | 46 , m_bottomLeft(bottomLeft) in Radii() 53 void setBottomLeft(const IntSize& size) { m_bottomLeft = size; } in setBottomLeft() 57 const IntSize& bottomLeft() const { return m_bottomLeft; } in bottomLeft() 74 IntSize m_bottomLeft; variable
|
D | FloatRoundedRect.h | 46 , m_bottomLeft(bottomLeft) in Radii() 53 void setBottomLeft(const FloatSize& size) { m_bottomLeft = size; } in setBottomLeft() 57 const FloatSize& bottomLeft() const { return m_bottomLeft; } in bottomLeft() 71 FloatSize m_bottomLeft; variable
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | BorderData.h | 40 , m_bottomLeft(Length(0, Fixed), Length(0, Fixed)) in BorderData() 56 if (!m_bottomLeft.width().isZero()) in hasBorderRadius() 94 …&& m_topLeft == o.m_topLeft && m_topRight == o.m_topRight && m_bottomLeft == o.m_bottomLeft && m_b… 111 const LengthSize& bottomLeft() const { return m_bottomLeft; } in bottomLeft() 124 LengthSize m_bottomLeft; variable
|
D | RenderStyle.h | 989 …void resetBorderBottomLeftRadius() { SET_VAR(surround, border.m_bottomLeft, initialBorderRadius())… in resetBorderBottomLeftRadius() 1007 void setBorderBottomLeftRadius(LengthSize s) { SET_VAR(surround, border.m_bottomLeft, s); } in setBorderBottomLeftRadius()
|