HomeSort by relevance Sort by last modified time
    Searched refs:firstLeaf (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/rendering/svg/
SVGRootInlineBox.cpp 209 InlineBox* firstLeaf = firstLeafChild();
211 if (firstLeaf == lastLeaf)
212 return firstLeaf;
216 for (InlineBox* leaf = firstLeaf; leaf; leaf = leaf->nextLeafChild()) {
  /external/webkit/Source/WebCore/rendering/
RootInlineBox.cpp 463 InlineBox* firstLeaf = firstLeafChild();
465 if (firstLeaf == lastLeaf && (!onlyEditableLeaves || isEditableLeaf(firstLeaf)))
466 return firstLeaf;
469 if (leftPosition <= firstLeaf->logicalLeft() && !firstLeaf->renderer()->isListMarker() && (!onlyEditableLeaves || isEditableLeaf(firstLeaf)))
470 // The leftPosition coordinate is less or equal to left edge of the firstLeaf.
472 return firstLeaf;
480 for (InlineBox* leaf = firstLeaf; leaf; leaf = leaf->nextLeafChild())
    [all...]

Completed in 54 milliseconds