Home | History | Annotate | Download | only in rendering

Lines Matching refs:InlineFlowBox

38 class InlineFlowBox : public InlineBox {
40 InlineFlowBox(RenderObject* obj)
63 virtual ~InlineFlowBox();
66 InlineFlowBox* prevLineBox() const { return m_prevLineBox; }
67 InlineFlowBox* nextLineBox() const { return m_nextLineBox; }
68 void setNextLineBox(InlineFlowBox* n) { m_nextLineBox = n; }
69 void setPreviousLineBox(InlineFlowBox* p) { m_prevLineBox = p; }
285 InlineFlowBox* m_prevLineBox; // The previous box that also uses our RenderObject
286 InlineFlowBox* m_nextLineBox; // The next box that also uses our RenderObject
300 inline void InlineFlowBox::checkConsistency() const
305 inline void InlineFlowBox::setHasBadChildList()
316 void showTree(const WebCore::InlineFlowBox*);