HomeSort by relevance Sort by last modified time
    Searched refs:m_bottomRight (Results 1 - 4 of 4) 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;
112 const LengthSize& bottomRight() const { return m_bottomRight; }
125 LengthSize m_bottomRight;
RenderStyle.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
RoundedRect.cpp 40 return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero();
58 m_bottomRight.scale(factor);
59 if (!m_bottomRight.width() || !m_bottomRight.height())
60 m_bottomRight = IntSize();
78 if (m_bottomRight.width() > 0 && m_bottomRight.height() > 0) {
79 m_bottomRight.setWidth(max<int>(0, m_bottomRight.width() + rightWidth));
80 m_bottomRight.setHeight(max<int>(0, m_bottomRight.height() + bottomWidth))
    [all...]
RoundedRect.h 45 , m_bottomRight(bottomRight)
52 void setBottomRight(const IntSize& size) { m_bottomRight = size; }
56 const IntSize& bottomRight() const { return m_bottomRight; }
73 IntSize m_bottomRight;

Completed in 174 milliseconds