Home | History | Annotate | Download | only in rendering

Lines Matching defs:LayoutRect

26 #include "platform/geometry/LayoutRect.h"
31 const LayoutRect& left() const { return m_left; }
32 const LayoutRect& center() const { return m_center; }
33 const LayoutRect& right() const { return m_right; }
35 void uniteLeft(const LayoutRect& r) { m_left.unite(r); }
36 void uniteCenter(const LayoutRect& r) { m_center.unite(r); }
37 void uniteRight(const LayoutRect& r) { m_right.unite(r); }
40 operator LayoutRect() const
42 LayoutRect result = m_left;
55 LayoutRect m_left;
56 LayoutRect m_center;
57 LayoutRect m_right;