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.cpp104 SVGInlineFlowBox* flowBox = toSVGInlineFlowBox(child); in layoutCharactersInTextBoxes() local
110 layoutCharactersInTextBoxes(flowBox, lineLayout); in layoutCharactersInTextBoxes()
115 layoutCharactersInTextBoxes(flowBox, characterLayout); in layoutCharactersInTextBoxes()
141 SVGInlineFlowBox* flowBox = toSVGInlineFlowBox(child); in layoutChildBoxes() local
142 layoutChildBoxes(flowBox); in layoutChildBoxes()
144 boxRect = flowBox->calculateBoundaries(); in layoutChildBoxes()
145 flowBox->setX(boxRect.x()); in layoutChildBoxes()
146 flowBox->setY(boxRect.y()); in layoutChildBoxes()
147 flowBox->setLogicalWidth(boxRect.width()); in layoutChildBoxes()
148 flowBox->setLogicalHeight(boxRect.height()); in layoutChildBoxes()
DSVGTextQuery.cpp61 InlineFlowBox* flowBox = renderBlockFlow->firstLineBox(); in flowBoxForRenderer() local
62 ASSERT(flowBox == renderBlockFlow->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.h412 RenderInline* flowBox = toRenderInline(m_current.object()); in handleEmptyInline() local
415 if (requiresLineBox || requiresLineBoxForContent(flowBox, m_lineInfo)) { in handleEmptyInline()
438 …calWidth(m_current.object()) + borderPaddingMarginStart(flowBox) + borderPaddingMarginEnd(flowBox)… in handleEmptyInline()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderInline.cpp1284 InlineFlowBox* flowBox = createInlineFlowBox(); in createAndAppendInlineFlowBox() local
1285 m_lineBoxes.appendLineBox(flowBox); in createAndAppendInlineFlowBox()
1286 return flowBox; in createAndAppendInlineFlowBox()