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

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
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;
  /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;
  /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...]
RenderLayer.h 370 const LayoutPoint& location() const { return m_topLeft; }
371 void setLocation(const LayoutPoint& p) { m_topLeft = p; }
    [all...]

Completed in 77 milliseconds