Lines Matching refs:flow
226 RenderFlow* flow = static_cast<RenderFlow*>(object()); in determineSpacingForFlowBoxes() local
228 if (!flow->firstChild()) in determineSpacingForFlowBoxes()
231 bool ltr = flow->style()->direction() == LTR; in determineSpacingForFlowBoxes()
235 if (!flow->firstLineBox()->isConstructed()) { in determineSpacingForFlowBoxes()
236 if (ltr && flow->firstLineBox() == this) in determineSpacingForFlowBoxes()
238 else if (!ltr && flow->lastLineBox() == this) in determineSpacingForFlowBoxes()
249 if (!flow->lastLineBox()->isConstructed()) { in determineSpacingForFlowBoxes()
252 … ((lastLine && !flow->continuation()) || nextOnLineExists() || onEndChain(endObject))) in determineSpacingForFlowBoxes()
256 … ((lastLine && !flow->continuation()) || prevOnLineExists() || onEndChain(endObject))) in determineSpacingForFlowBoxes()
332 InlineFlowBox* flow = static_cast<InlineFlowBox*>(curr); in placeBoxesHorizontally() local
333 x += flow->marginLeft(); in placeBoxesHorizontally()
334 x = flow->placeBoxesHorizontally(x, leftPosition, rightPosition, needsWordSpacing); in placeBoxesHorizontally()
335 x += flow->marginRight(); in placeBoxesHorizontally()