Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/rendering/svg/
DRenderSVGText.cpp220 …InlineBox* closestBox = static_cast<SVGRootInlineBox*>(rootBox)->closestLeafChildForPosition(point… in positionForPoint() local
221 if (!closestBox) in positionForPoint()
224 return closestBox->renderer()->positionForPoint(IntPoint(pointInContents.x(), closestBox->m_y)); in positionForPoint()
/external/webkit/Source/WebCore/rendering/
DRenderBlock.cpp4149 InlineBox* closestBox = 0; in positionForPointWithInlineChildren() local
4161 closestBox = root->closestLeafChildForLogicalLeftPosition(pointInLogicalContents.x()); in positionForPointWithInlineChildren()
4162 if (closestBox) in positionForPointWithInlineChildren()
4169 if (!moveCaretToBoundary && !closestBox && lastRootBoxWithChildren) { in positionForPointWithInlineChildren()
4171closestBox = lastRootBoxWithChildren->closestLeafChildForLogicalLeftPosition(pointInLogicalContent… in positionForPointWithInlineChildren()
4174 if (closestBox) { in positionForPointWithInlineChildren()
4181 IntPoint point(pointInLogicalContents.x(), closestBox->logicalTop()); in positionForPointWithInlineChildren()
4184 if (closestBox->renderer()->isReplaced()) in positionForPointWithInlineChildren()
4185 …return positionForPointRespectingEditingBoundaries(this, toRenderBox(closestBox->renderer()), poin… in positionForPointWithInlineChildren()
4186 return closestBox->renderer()->positionForPoint(point); in positionForPointWithInlineChildren()