HomeSort by relevance Sort by last modified time
    Searched defs:InlineFlowBox (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineFlowBox.h 42 class InlineFlowBox : public InlineBox {
44 InlineFlowBox(RenderObject& obj)
73 virtual ~InlineFlowBox();
81 InlineFlowBox* prevLineBox() const { return m_prevLineBox; }
82 InlineFlowBox* nextLineBox() const { return m_nextLineBox; }
83 void setNextLineBox(InlineFlowBox* n) { m_nextLineBox = n; }
84 void setPreviousLineBox(InlineFlowBox* p) { m_prevLineBox = p; }
321 InlineFlowBox* m_prevLineBox; // The previous box that also uses our RenderObject
322 InlineFlowBox* m_nextLineBox; // The next box that also uses our RenderObject
324 // Maximum logicalTop among all children of an InlineFlowBox. Used t
    [all...]
InlineFlowBox.cpp 21 #include "core/rendering/InlineFlowBox.h"
51 COMPILE_ASSERT(sizeof(InlineFlowBox) == sizeof(SameSizeAsInlineFlowBox), InlineFlowBox_should_stay_small);
55 InlineFlowBox::~InlineFlowBox()
64 LayoutUnit InlineFlowBox::getFlowSpacingLogicalWidth()
74 IntRect InlineFlowBox::roundedFrameRect() const
86 static void setHasTextDescendantsOnAncestors(InlineFlowBox* box)
94 void InlineFlowBox::addToLine(InlineBox* child)
143 InlineFlowBox* childFlowBox = toInlineFlowBox(child);
181 void InlineFlowBox::removeChild(InlineBox* child, MarkLineBoxes markDirty
    [all...]

Completed in 176 milliseconds