Home
last modified time | relevance | path

Searched refs:flowBox (Results 1 – 6 of 6) sorted by relevance

/external/webkit/WebCore/rendering/
DRenderSVGInline.cpp50 InlineFlowBox* flowBox = new (renderArena()) SVGInlineFlowBox(this); in createInlineBox() local
53 m_firstLineBox = m_lastLineBox = flowBox; in createInlineBox()
55 m_lastLineBox->setNextLineBox(flowBox); in createInlineBox()
56 flowBox->setPreviousLineBox(m_lastLineBox); in createInlineBox()
57 m_lastLineBox = flowBox; in createInlineBox()
60 return flowBox; in createInlineBox()
DRenderSVGText.cpp114 InlineFlowBox* flowBox = new (renderArena()) SVGRootInlineBox(this); in createInlineBox() local
117 m_firstLineBox = m_lastLineBox = flowBox; in createInlineBox()
119 m_lastLineBox->setNextLineBox(flowBox); in createInlineBox()
120 flowBox->setPreviousLineBox(m_lastLineBox); in createInlineBox()
121 m_lastLineBox = flowBox; in createInlineBox()
124 return flowBox; in createInlineBox()
160 InlineFlowBox* flowBox = static_cast<InlineFlowBox*>(runBox); in absoluteRects() local
161 for (InlineBox* box = flowBox->firstChild(); box; box = box->nextOnLine()) { in absoluteRects()
185 InlineFlowBox* flowBox = static_cast<InlineFlowBox*>(runBox); in absoluteQuads() local
186 for (InlineBox* box = flowBox->firstChild(); box; box = box->nextOnLine()) { in absoluteQuads()
[all …]
DSVGRootInlineBox.cpp396 InlineFlowBox* flowBox = box->parent(); in chunkStartCallback() local
399 RenderObject* object = flowBox->object(); in chunkStartCallback()
405 if (!flowBox->isRootInlineBox()) in chunkStartCallback()
410 if (!flowBox->isRootInlineBox()) { in chunkStartCallback()
421 InlineFlowBox* flowBox = box->parent(); in chunkEndCallback() local
423 RenderObject* object = flowBox->object(); in chunkEndCallback()
431 if (!flowBox->isRootInlineBox()) { in chunkEndCallback()
443 InlineFlowBox* flowBox = box->parent(); in chunkSetupFillCallback() local
446 RenderObject* object = flowBox->object(); in chunkSetupFillCallback()
464 InlineFlowBox* flowBox = box->parent(); in chunkSetupStrokeCallback() local
[all …]
DRenderFlow.cpp357 InlineFlowBox* flowBox = 0; in createInlineBox() local
359 flowBox = new (renderArena()) InlineFlowBox(this); in createInlineBox()
361 flowBox = new (renderArena()) RootInlineBox(this); in createInlineBox()
364 m_firstLineBox = m_lastLineBox = flowBox; in createInlineBox()
366 m_lastLineBox->setNextLineBox(flowBox); in createInlineBox()
367 flowBox->setPreviousLineBox(m_lastLineBox); in createInlineBox()
368 m_lastLineBox = flowBox; in createInlineBox()
373 return flowBox; in createInlineBox()
DSVGCharacterLayoutInfo.cpp270 void SVGCharacterLayoutInfo::addLayoutInformation(InlineFlowBox* flowBox, float textAnchorStartOffs… in addLayoutInformation() argument
277 RenderSVGTextPath* textPath = static_cast<RenderSVGTextPath*>(flowBox->object()); in addLayoutInformation()
Dbidi.cpp1763 RenderBox* flowBox = toRenderBox(o); in findNextLineBreak() local
1769 if (inlineFlowRequiresLineBox(flowBox)) { in findNextLineBreak()
1785 tmpW += flowBox->marginLeft() + flowBox->borderLeft() + flowBox->paddingLeft() + in findNextLineBreak()
1786 flowBox->marginRight() + flowBox->borderRight() + flowBox->paddingRight(); in findNextLineBreak()