Home | History | Annotate | Download | only in rendering

Lines Matching refs:IntRect

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