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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRootInlineBox.cpp 195 InlineBox* firstLeaf = firstLeafChild();
197 if (firstLeaf == lastLeaf)
198 return firstLeaf;
202 for (InlineBox* leaf = firstLeaf; leaf; leaf = leaf->nextLeafChild()) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RootInlineBox.cpp 622 InlineBox* firstLeaf = firstLeafChild();
625 if (firstLeaf != lastLeaf) {
626 if (firstLeaf->isLineBreak())
627 firstLeaf = firstLeaf->nextLeafChildIgnoringLineBreak();
632 if (firstLeaf == lastLeaf && (!onlyEditableLeaves || isEditableLeaf(firstLeaf)))
633 return firstLeaf;
636 if (leftPosition <= firstLeaf->logicalLeft() && !firstLeaf->renderer()->isListMarker() && (!onlyEditableLeaves || isEditableLeaf(firstLeaf))
    [all...]

Completed in 43 milliseconds