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.cpp492 InlineBox* firstLeaf = firstLeafChild(); in closestLeafChildForLogicalLeftPosition() local
495 if (firstLeaf != lastLeaf) { in closestLeafChildForLogicalLeftPosition()
496 if (firstLeaf->isLineBreak()) in closestLeafChildForLogicalLeftPosition()
497 firstLeaf = firstLeaf->nextLeafChildIgnoringLineBreak(); in closestLeafChildForLogicalLeftPosition()
502 if (firstLeaf == lastLeaf && (!onlyEditableLeaves || isEditableLeaf(firstLeaf))) in closestLeafChildForLogicalLeftPosition()
503 return firstLeaf; in closestLeafChildForLogicalLeftPosition()
506 … (leftPosition <= firstLeaf->logicalLeft() && !firstLeaf->renderer().isListMarker() && (!onlyEdita… in closestLeafChildForLogicalLeftPosition()
509 return firstLeaf; in closestLeafChildForLogicalLeftPosition()
517 for (InlineBox* leaf = firstLeaf; leaf; leaf = leaf->nextLeafChildIgnoringLineBreak()) { in closestLeafChildForLogicalLeftPosition()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DSVGRootInlineBox.cpp182 InlineBox* firstLeaf = firstLeafChild(); in closestLeafChildForPosition() local
184 if (firstLeaf == lastLeaf) in closestLeafChildForPosition()
185 return firstLeaf; in closestLeafChildForPosition()
189 for (InlineBox* leaf = firstLeaf; leaf; leaf = leaf->nextLeafChild()) { in closestLeafChildForPosition()