HomeSort by relevance Sort by last modified time
    Searched refs:m_topLeft (Results 1 - 8 of 8) 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;
109 const LengthSize& topLeft() const { return m_topLeft; }
122 LengthSize m_topLeft;
RenderStyle.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineBox.h 55 , m_topLeft(topLeft)
190 void setX(float x) { m_topLeft.setX(x); }
191 float x() const { return m_topLeft.x(); }
192 float left() const { return m_topLeft.x(); }
195 void setY(float y) { m_topLeft.setY(y); }
196 float y() const { return m_topLeft.y(); }
197 float top() const { return m_topLeft.y(); }
199 const FloatPoint& topLeft() const { return m_topLeft; }
208 float logicalLeft() const { return isHorizontal() ? m_topLeft.x() : m_topLeft.y();
    [all...]
InlineFlowBox.h 285 return FloatRect(m_topLeft.x(), lineTop, width(), lineBottom - lineTop);
286 return FloatRect(lineTop, m_topLeft.y(), lineBottom - lineTop, height());
InlineBox.cpp 192 m_topLeft.move(dx, dy);
RenderLayer.h 370 const LayoutPoint& location() const { return m_topLeft; }
371 void setLocation(const LayoutPoint& p) { m_topLeft = p; }
    [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();
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...]
RoundedRect.h 42 : m_topLeft(topLeft)
49 void setTopLeft(const IntSize& size) { m_topLeft = size; }
53 const IntSize& topLeft() const { return m_topLeft; }
70 IntSize m_topLeft;

Completed in 70 milliseconds