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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BorderData.h 40 , m_bottomLeft(Length(0, Fixed), Length(0, Fixed))
56 if (!m_bottomLeft.width().isZero())
94 && m_topLeft == o.m_topLeft && m_topRight == o.m_topRight && m_bottomLeft == o.m_bottomLeft && m_bottomRight == o.m_bottomRight;
111 const LengthSize& bottomLeft() const { return m_bottomLeft; }
124 LengthSize m_bottomLeft;
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();
55 m_bottomLeft.scale(factor);
56 if (!m_bottomLeft.width() || !m_bottomLeft.height())
57 m_bottomLeft = IntSize();
74 if (m_bottomLeft.width() > 0 && m_bottomLeft.height() > 0) {
75 m_bottomLeft.setWidth(max<int>(0, m_bottomLeft.width() + leftWidth));
76 m_bottomLeft.setHeight(max<int>(0, m_bottomLeft.height() + bottomWidth))
    [all...]
RoundedRect.h 44 , m_bottomLeft(bottomLeft)
51 void setBottomLeft(const IntSize& size) { m_bottomLeft = size; }
55 const IntSize& bottomLeft() const { return m_bottomLeft; }
72 IntSize m_bottomLeft;

Completed in 769 milliseconds