Home | History | Annotate | Download | only in rendering

Lines Matching defs:m_rect

90     : m_rect(rect)
94 const LayoutRect& rect() const { return m_rect; }
95 void setRect(const LayoutRect& rect) { m_rect = rect; }
104 void intersect(const LayoutRect& other) { m_rect.intersect(other); }
107 m_rect.intersect(other.rect());
111 void move(LayoutUnit x, LayoutUnit y) { m_rect.move(x, y); }
112 void move(const LayoutSize& size) { m_rect.move(size); }
113 void moveBy(const LayoutPoint& point) { m_rect.moveBy(point); }
115 bool isEmpty() const { return m_rect.isEmpty(); }
116 bool intersects(const LayoutRect& rect) const { return m_rect.intersects(rect); }
120 LayoutRect m_rect;