Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DSVGRootInlineBox.cpp115 SVGInlineFlowBox* flowBox = toSVGInlineFlowBox(child); in layoutCharactersInTextBoxes() local
121 layoutCharactersInTextBoxes(flowBox, lineLayout); in layoutCharactersInTextBoxes()
126 layoutCharactersInTextBoxes(flowBox, characterLayout); in layoutCharactersInTextBoxes()
153 SVGInlineFlowBox* flowBox = toSVGInlineFlowBox(child); in layoutChildBoxes() local
154 layoutChildBoxes(flowBox); in layoutChildBoxes()
156 boxRect = flowBox->calculateBoundaries(); in layoutChildBoxes()
157 flowBox->setX(boxRect.x()); in layoutChildBoxes()
158 flowBox->setY(boxRect.y()); in layoutChildBoxes()
159 flowBox->setLogicalWidth(boxRect.width()); in layoutChildBoxes()
160 flowBox->setLogicalHeight(boxRect.height()); in layoutChildBoxes()
DSVGTextQuery.cpp61 InlineFlowBox* flowBox = renderBlock->firstLineBox(); in flowBoxForRenderer() local
62 ASSERT(flowBox == renderBlock->lastLineBox()); in flowBoxForRenderer()
63 return flowBox; in flowBoxForRenderer()
71 InlineFlowBox* flowBox = renderInline->firstLineBox(); in flowBoxForRenderer() local
72 ASSERT(flowBox == renderInline->lastLineBox()); in flowBoxForRenderer()
73 return flowBox; in flowBoxForRenderer()
85 void SVGTextQuery::collectTextBoxesInFlowBox(InlineFlowBox* flowBox) in collectTextBoxesInFlowBox() argument
87 if (!flowBox) in collectTextBoxesInFlowBox()
90 for (InlineBox* child = flowBox->firstChild(); child; child = child->nextOnLine()) { in collectTextBoxesInFlowBox()
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
DBreakingContextInlineHeaders.h565 RenderInline* flowBox = toRenderInline(m_current.object()); in handleEmptyInline() local
572 if (requiresLineBox || requiresLineBoxForContent(flowBox, m_lineInfo)) { in handleEmptyInline()
589 …calWidth(m_current.object()) + borderPaddingMarginStart(flowBox) + borderPaddingMarginEnd(flowBox)… in handleEmptyInline()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderInline.cpp1283 InlineFlowBox* flowBox = createInlineFlowBox(); in createAndAppendInlineFlowBox() local
1284 m_lineBoxes.appendLineBox(flowBox); in createAndAppendInlineFlowBox()
1285 return flowBox; in createAndAppendInlineFlowBox()