Home
last modified time | relevance | path

Searched refs:firstLeaf (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRootInlineBox.cpp616 InlineBox* firstLeaf = firstLeafChild(); in closestLeafChildForLogicalLeftPosition() local
619 if (firstLeaf != lastLeaf) { in closestLeafChildForLogicalLeftPosition()
620 if (firstLeaf->isLineBreak()) in closestLeafChildForLogicalLeftPosition()
621 firstLeaf = firstLeaf->nextLeafChildIgnoringLineBreak(); in closestLeafChildForLogicalLeftPosition()
626 if (firstLeaf == lastLeaf && (!onlyEditableLeaves || isEditableLeaf(firstLeaf))) in closestLeafChildForLogicalLeftPosition()
627 return firstLeaf; in closestLeafChildForLogicalLeftPosition()
630 …(leftPosition <= firstLeaf->logicalLeft() && !firstLeaf->renderer()->isListMarker() && (!onlyEdita… in closestLeafChildForLogicalLeftPosition()
633 return firstLeaf; in closestLeafChildForLogicalLeftPosition()
641 for (InlineBox* leaf = firstLeaf; leaf; leaf = leaf->nextLeafChildIgnoringLineBreak()) { in closestLeafChildForLogicalLeftPosition()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DSVGRootInlineBox.cpp195 InlineBox* firstLeaf = firstLeafChild(); in closestLeafChildForPosition() local
197 if (firstLeaf == lastLeaf) in closestLeafChildForPosition()
198 return firstLeaf; in closestLeafChildForPosition()
202 for (InlineBox* leaf = firstLeaf; leaf; leaf = leaf->nextLeafChild()) { in closestLeafChildForPosition()