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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BorderData.h 38 BorderData() : m_topLeft(Length(0, Fixed), Length(0, Fixed))
52 if (!m_topLeft.width().isZero())
94 && m_topLeft == o.m_topLeft && m_topRight == o.m_topRight && m_bottomLeft == o.m_bottomLeft && m_bottomRight == o.m_bottomRight;
104 && m_topLeft == o.m_topLeft
122 const LengthSize& topLeft() const { return m_topLeft; }
135 LengthSize m_topLeft;
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();
65 m_topLeft.scale(factor);
66 if (!m_topLeft.width() || !m_topLeft.height())
67 m_topLeft = FloatSize();
82 if (m_topLeft.width() > 0 && m_topLeft.height() > 0) {
83 m_topLeft.setWidth(std::max<float>(0, m_topLeft.width() + leftWidth));
84 m_topLeft.setHeight(std::max<float>(0, m_topLeft.height() + topWidth))
    [all...]
RoundedRect.cpp 40 return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero();
49 m_topLeft.scale(factor);
50 if (!m_topLeft.width() || !m_topLeft.height())
51 m_topLeft = IntSize();
66 if (m_topLeft.width() > 0 && m_topLeft.height() > 0) {
67 m_topLeft.setWidth(max<int>(0, m_topLeft.width() + leftWidth));
68 m_topLeft.setHeight(max<int>(0, m_topLeft.height() + topWidth))
    [all...]
FloatRoundedRect.h 45 : m_topLeft(topLeft)
53 : m_topLeft(intRadii.topLeft())
60 void setTopLeft(const FloatSize& size) { m_topLeft = size; }
64 const FloatSize& topLeft() const { return m_topLeft; }
78 FloatSize m_topLeft;
RoundedRect.h 44 : m_topLeft(topLeft)
51 void setTopLeft(const IntSize& size) { m_topLeft = size; }
55 const IntSize& topLeft() const { return m_topLeft; }
72 IntSize m_topLeft;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineBox.h 58 , m_topLeft(topLeft)
192 void setX(float x) { m_topLeft.setX(x); }
193 float x() const { return m_topLeft.x(); }
194 float left() const { return m_topLeft.x(); }
197 void setY(float y) { m_topLeft.setY(y); }
198 float y() const { return m_topLeft.y(); }
199 float top() const { return m_topLeft.y(); }
201 const FloatPoint& topLeft() const { return m_topLeft; }
210 float logicalLeft() const { return isHorizontal() ? m_topLeft.x() : m_topLeft.y();
    [all...]
RenderLayer.h 139 const LayoutPoint& location() const { return m_topLeft; }
140 void setLocation(const LayoutPoint& p) { m_topLeft = p; }
    [all...]
InlineFlowBox.h 286 return FloatRect(m_topLeft.x(), lineTop.toFloat(), width(), (lineBottom - lineTop).toFloat());
287 return FloatRect(lineTop.toFloat(), m_topLeft.y(), (lineBottom - lineTop).toFloat(), height());
InlineBox.cpp 189 m_topLeft.move(dx, dy);

Completed in 169 milliseconds