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

  /external/webkit/WebCore/rendering/
RenderSVGInline.cpp 53 SVGRootInlineBox* rootBox = firstBox ? static_cast<SVGInlineTextBox*>(firstBox)->svgRootInlineBox() : 0;
54 RenderBox* object = rootBox ? rootBox->block() : 0;
72 SVGRootInlineBox* rootBox = firstBox ? static_cast<SVGInlineTextBox*>(firstBox)->svgRootInlineBox() : 0;
73 RenderBox* object = rootBox ? rootBox->block() : 0;
SVGRenderTreeAsText.cpp 364 SVGRootInlineBox* rootBox = textBox->svgRootInlineBox();
365 if (!rootBox)
368 Vector<SVGTextChunk>& chunks = const_cast<Vector<SVGTextChunk>& >(rootBox->svgTextChunks());
SVGInlineTextBox.cpp 221 SVGRootInlineBox* rootBox = svgRootInlineBox();
222 if (!rootBox)
228 rootBox->walkTextChunks(&walker, this);
314 SVGRootInlineBox* rootBox = svgRootInlineBox();
315 if (!rootBox)
321 rootBox->walkTextChunks(&walker, this);
InlineFlowBox.cpp 754 RootInlineBox* rootBox = root();
755 int bottom = min(rootBox->lineBottom(), y + h);
756 y = max(rootBox->lineTop(), y);
    [all...]
RenderBox.cpp     [all...]
RenderBlock.cpp 400 RootInlineBox* rootBox = createRootInlineBox();
401 m_lineBoxes.appendLineBox(rootBox);
402 return rootBox;
    [all...]
  /external/webkit/WebCore/svg/
SVGTextContentElement.cpp 332 SVGRootInlineBox* rootBox = static_cast<SVGRootInlineBox*>(svgText->firstRootBox());
333 if (!rootBox) {
336 rootBox = static_cast<SVGRootInlineBox*>(svgText->firstRootBox());
339 ASSERT(rootBox);
340 return rootBox;
346 SVGRootInlineBox* rootBox = rootInlineBoxForTextContentElement(element);
347 if (!rootBox)
351 Vector<SVGInlineTextBox*> textBoxes = findInlineTextBoxInTextChunks(element, rootBox->svgTextChunks());
363 rootBox->walkTextChunks(&walker, *it);

Completed in 596 milliseconds