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

  /external/webkit/WebCore/rendering/
RenderBox.h 43 int x() const { return m_frameRect.x(); }
44 int y() const { return m_frameRect.y(); }
45 int width() const { return m_frameRect.width(); }
46 int height() const { return m_frameRect.height(); }
48 void setX(int x) { m_frameRect.setX(x); }
49 void setY(int y) { m_frameRect.setY(y); }
50 void setWidth(int width) { m_frameRect.setWidth(width); }
51 void setHeight(int height) { m_frameRect.setHeight(height); }
53 IntPoint location() const { return m_frameRect.location(); }
54 IntSize size() const { return m_frameRect.size();
    [all...]
RenderBox.cpp     [all...]

Completed in 155 milliseconds