Searched refs:m_topRight (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() 68 m_topRight.scale(factor); in scale() 69 if (!m_topRight.width() || !m_topRight.height()) in scale() 70 m_topRight = FloatSize(); in scale() 86 if (m_topRight.width() > 0 && m_topRight.height() > 0) { in expand() 87 m_topRight.setWidth(std::max<float>(0, m_topRight.width() + rightWidth)); in expand() 88 m_topRight.setHeight(std::max<float>(0, m_topRight.height() + topWidth)); in expand()
|
D | RoundedRect.cpp | 40 …return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero(… in isZero() 52 m_topRight.scale(factor); in scale() 53 if (!m_topRight.width() || !m_topRight.height()) in scale() 54 m_topRight = IntSize(); in scale() 70 if (m_topRight.width() > 0 && m_topRight.height() > 0) { in expand() 71 m_topRight.setWidth(max<int>(0, m_topRight.width() + rightWidth)); in expand() 72 m_topRight.setHeight(max<int>(0, m_topRight.height() + topWidth)); in expand() 105 m_topRight = edges.topRight(); in includeLogicalEdges() 111 m_topRight = edges.topRight(); in includeLogicalEdges() 124 m_topRight = IntSize(); in excludeLogicalEdges() [all …]
|
D | RoundedRect.h | 45 , m_topRight(topRight) in Radii() 52 void setTopRight(const IntSize& size) { m_topRight = size; } in setTopRight() 56 const IntSize& topRight() const { return m_topRight; } in topRight() 73 IntSize m_topRight; variable
|
D | FloatRoundedRect.h | 45 , m_topRight(topRight) in Radii() 52 void setTopRight(const FloatSize& size) { m_topRight = size; } in setTopRight() 56 const FloatSize& topRight() const { return m_topRight; } in topRight() 70 FloatSize m_topRight; variable
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | BorderData.h | 39 , m_topRight(Length(0, Fixed), Length(0, Fixed)) in BorderData() 54 if (!m_topRight.width().isZero()) in hasBorderRadius() 94 …&& m_topLeft == o.m_topLeft && m_topRight == o.m_topRight && m_bottomLeft == o.m_bottomLeft && m_b… 110 const LengthSize& topRight() const { return m_topRight; } in topRight() 123 LengthSize m_topRight; variable
|
D | RenderStyle.h | 988 … void resetBorderTopRightRadius() { SET_VAR(surround, border.m_topRight, initialBorderRadius()); } in resetBorderTopRightRadius() 1006 void setBorderTopRightRadius(LengthSize s) { SET_VAR(surround, border.m_topRight, s); } in setBorderTopRightRadius()
|