Searched defs:InlineTextBox (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DInlineTextBox.h38 // Helper functions shared by InlineTextBox / SVGRootInlineBox
42 class InlineTextBox : public InlineBox { class in namespace:WebCore
44 InlineTextBox(RenderObject* obj) function in class:WebCore::InlineTextBox
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_prevTextBo
[all...]

Completed in 94 milliseconds