Home | History | Annotate | Download | only in rendering

Lines Matching refs:InlineTextBox

38 // Helper functions shared by InlineTextBox / SVGRootInlineBox
42 class InlineTextBox : public InlineBox {
44 InlineTextBox(RenderObject* obj)
56 InlineTextBox* prevTextBox() const { return m_prevTextBox; }
57 InlineTextBox* nextTextBox() const { return m_nextTextBox; }
58 void setNextTextBox(InlineTextBox* n) { m_nextTextBox = n; }
59 void setPreviousTextBox(InlineTextBox* p) { m_prevTextBox = p; }
78 static inline bool compareByStart(const InlineTextBox* first, const InlineTextBox* second) { return first->start() < second->start(); }
150 InlineTextBox* m_prevTextBox; // The previous box that also uses our RenderObject
151 InlineTextBox* m_nextTextBox; // The next box that also uses our RenderObject
181 inline RenderText* InlineTextBox::textRenderer() const