Home | History | Annotate | Download | only in rendering

Lines Matching defs:InlineFlowBox

41 class InlineFlowBox : public InlineBox {
43 InlineFlowBox(RenderObject* obj)
69 virtual ~InlineFlowBox();
75 InlineFlowBox* prevLineBox() const { return m_prevLineBox; }
76 InlineFlowBox* nextLineBox() const { return m_nextLineBox; }
77 void setNextLineBox(InlineFlowBox* n) { m_nextLineBox = n; }
78 void setPreviousLineBox(InlineFlowBox* p) { m_prevLineBox = p; }
317 InlineFlowBox* m_prevLineBox; // The previous box that also uses our RenderObject
318 InlineFlowBox* m_nextLineBox; // The next box that also uses our RenderObject
321 // Maximum logicalTop among all children of an InlineFlowBox. Used to
354 inline InlineFlowBox* toInlineFlowBox(InlineBox* object)
357 return static_cast<InlineFlowBox*>(object);
360 inline const InlineFlowBox* toInlineFlowBox(const InlineBox* object)
363 return static_cast<const InlineFlowBox*>(object);
367 void toInlineFlowBox(const InlineFlowBox*);
370 inline void InlineFlowBox::checkConsistency() const
375 inline void InlineFlowBox::setHasBadChildList()
386 void showTree(const WebCore::InlineFlowBox*);