HomeSort by relevance Sort by last modified time
    Searched refs:m_bottomRight (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BorderData.h 41 , m_bottomRight(Length(0, Fixed), Length(0, Fixed))
58 if (!m_bottomRight.width().isZero())
94 && m_topLeft == o.m_topLeft && m_topRight == o.m_topRight && m_bottomLeft == o.m_bottomLeft && m_bottomRight == o.m_bottomRight;
107 && m_bottomRight == o.m_bottomRight;
125 const LengthSize& bottomRight() const { return m_bottomRight; }
138 LengthSize m_bottomRight;
RenderStyle.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatRoundedRect.cpp 56 return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero();
74 m_bottomRight.scale(factor);
75 if (!m_bottomRight.width() || !m_bottomRight.height())
76 m_bottomRight = FloatSize();
94 if (m_bottomRight.width() > 0 && m_bottomRight.height() > 0) {
95 m_bottomRight.setWidth(std::max<float>(0, m_bottomRight.width() + rightWidth));
96 m_bottomRight.setHeight(std::max<float>(0, m_bottomRight.height() + bottomWidth))
    [all...]
RoundedRect.cpp 38 return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero();
56 m_bottomRight.scale(factor);
57 if (!m_bottomRight.width() || !m_bottomRight.height())
58 m_bottomRight = IntSize();
76 if (m_bottomRight.width() > 0 && m_bottomRight.height() > 0) {
77 m_bottomRight.setWidth(std::max<int>(0, m_bottomRight.width() + rightWidth));
78 m_bottomRight.setHeight(std::max<int>(0, m_bottomRight.height() + bottomWidth))
    [all...]
FloatRoundedRect.h 48 , m_bottomRight(bottomRight)
56 , m_bottomRight(intRadii.bottomRight())
63 void setBottomRight(const FloatSize& size) { m_bottomRight = size; }
67 const FloatSize& bottomRight() const { return m_bottomRight; }
81 FloatSize m_bottomRight;
RoundedRect.h 47 , m_bottomRight(bottomRight)
54 void setBottomRight(const IntSize& size) { m_bottomRight = size; }
58 const IntSize& bottomRight() const { return m_bottomRight; }
75 IntSize m_bottomRight;

Completed in 60 milliseconds