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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DInlineTextBox.h39 // Helper functions shared by InlineTextBox / SVGRootInlineBox
43 class InlineTextBox : public InlineBox { class in namespace:WebCore
45 InlineTextBox(RenderObject* obj) function in class:WebCore::InlineTextBox
57 InlineTextBox* prevTextBox() const { return m_prevTextBox; }
58 InlineTextBox* nextTextBox() const { return m_nextTextBox; }
59 void setNextTextBox(InlineTextBox* n) { m_nextTextBox = n; }
60 void setPreviousTextBox(InlineTextBox* p) { m_prevTextBox = p; }
81 static inline bool compareByStart(const InlineTextBox* first, const InlineTextBox* second) { return first->start() < second->start(); }
162 InlineTextBox* m_prevTextBo
[all...]

Completed in 50 milliseconds