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/
RootInlineBox.cpp 492 InlineBox* firstLeaf = firstLeafChild();
495 if (firstLeaf != lastLeaf) {
496 if (firstLeaf->isLineBreak())
497 firstLeaf = firstLeaf->nextLeafChildIgnoringLineBreak();
502 if (firstLeaf == lastLeaf && (!onlyEditableLeaves || isEditableLeaf(firstLeaf)))
503 return firstLeaf;
506 if (leftPosition <= firstLeaf->logicalLeft() && !firstLeaf->renderer().isListMarker() && (!onlyEditableLeaves || isEditableLeaf(firstLeaf))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRootInlineBox.cpp 182 InlineBox* firstLeaf = firstLeafChild();
184 if (firstLeaf == lastLeaf)
185 return firstLeaf;
189 for (InlineBox* leaf = firstLeaf; leaf; leaf = leaf->nextLeafChild()) {

Completed in 68 milliseconds