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

/external/webkit/Source/WebCore/rendering/
H A DInlineFlowBox.h38 class InlineFlowBox : public InlineBox { class in namespace:WebCore
40 InlineFlowBox(RenderObject* obj) function in class:WebCore::InlineFlowBox
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
[all...]
H A DInlineFlowBox.cpp21 #include "InlineFlowBox.h"
50 InlineFlowBox::~InlineFlowBox()
59 int InlineFlowBox::getFlowSpacingLogicalWidth()
64 totWidth += static_cast<InlineFlowBox*>(curr)->getFlowSpacingLogicalWidth();
69 IntRect InlineFlowBox::roundedFrameRect() const
81 void InlineFlowBox::addToLine(InlineBox* child)
104 if (static_cast<InlineFlowBox*>(child)->hasTextDescendants())
130 InlineFlowBox* childFlowBox = static_cast<InlineFlowBox*>(chil
[all...]

Completed in 856 milliseconds