HomeSort by relevance Sort by last modified time
    Searched refs:m_bottomLeft (Results 1 - 6 of 6) 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;
106 && m_bottomLeft == o.m_bottomLeft
124 const LengthSize& bottomLeft() const { return m_bottomLeft; }
137 LengthSize m_bottomLeft;
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();
71 m_bottomLeft.scale(factor);
72 if (!m_bottomLeft.width() || !m_bottomLeft.height())
73 m_bottomLeft = FloatSize();
90 if (m_bottomLeft.width() > 0 && m_bottomLeft.height() > 0) {
91 m_bottomLeft.setWidth(std::max<float>(0, m_bottomLeft.width() + leftWidth));
92 m_bottomLeft.setHeight(std::max<float>(0, m_bottomLeft.height() + bottomWidth))
    [all...]
RoundedRect.cpp 38 return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero();
53 m_bottomLeft.scale(factor);
54 if (!m_bottomLeft.width() || !m_bottomLeft.height())
55 m_bottomLeft = IntSize();
72 if (m_bottomLeft.width() > 0 && m_bottomLeft.height() > 0) {
73 m_bottomLeft.setWidth(std::max<int>(0, m_bottomLeft.width() + leftWidth));
74 m_bottomLeft.setHeight(std::max<int>(0, m_bottomLeft.height() + bottomWidth))
    [all...]
FloatRoundedRect.h 47 , m_bottomLeft(bottomLeft)
55 , m_bottomLeft(intRadii.bottomLeft())
62 void setBottomLeft(const FloatSize& size) { m_bottomLeft = size; }
66 const FloatSize& bottomLeft() const { return m_bottomLeft; }
80 FloatSize m_bottomLeft;
RoundedRect.h 46 , m_bottomLeft(bottomLeft)
53 void setBottomLeft(const IntSize& size) { m_bottomLeft = size; }
57 const IntSize& bottomLeft() const { return m_bottomLeft; }
74 IntSize m_bottomLeft;

Completed in 450 milliseconds