Home | History | Annotate | Download | only in rendering

Lines Matching defs:InlineBox

34 // InlineBox represents a rectangle that occurs on a line.  It corresponds to
36 class InlineBox {
38 InlineBox(RenderObject* obj)
70 InlineBox(RenderObject* obj, int x, int y, int width, bool firstLine, bool constructed,
71 bool dirty, bool extracted, InlineBox* next, InlineBox* prev, InlineFlowBox* parent)
103 virtual ~InlineBox();
163 InlineBox* nextOnLine() const { return m_next; }
164 InlineBox* prevOnLine() const { return m_prev; }
165 void setNextOnLine(InlineBox* next)
170 void setPrevOnLine(InlineBox* prev)
180 InlineBox* nextLeafChild() const;
181 InlineBox* prevLeafChild() const;
249 InlineBox* m_next; // The next element on the same line as us.
250 InlineBox* m_prev; // The previous element on the same line as us.
297 inline InlineBox::~InlineBox()
302 inline void InlineBox::setHasBadParent()
313 void showTree(const WebCore::InlineBox*);