Lines Matching refs:childBox
191 while (InlineBox* childBox = box->firstChild()) in destroy() local
192 childBox->remove(); in destroy()
2701 RenderBox* childBox = toRenderBox(c); in lowestPosition() local
2702 bottom = max(bottom, childBox->y() + childBox->lowestPosition(false)); in lowestPosition()
2793 RenderBox* childBox = toRenderBox(c); in rightmostPosition() local
2794 right = max(right, childBox->x() + childBox->rightmostPosition(false)); in rightmostPosition()
2890 RenderBox* childBox = toRenderBox(c); in leftmostPosition() local
2891 left = min(left, childBox->x() + childBox->leftmostPosition(false)); in leftmostPosition()
3581 … for (RenderBox* childBox = lastChildBox(); childBox; childBox = childBox->previousSiblingBox()) { in positionForPoint() local
3582 if (isChildHitTestCandidate(childBox)) in positionForPoint()
3583 return positionForPointRespectingEditingBoundaries(this, childBox, pointInContents); in positionForPoint()
3586 … for (RenderBox* childBox = firstChildBox(); childBox; childBox = childBox->nextSiblingBox()) { in positionForPoint() local
3588 if (isChildHitTestCandidate(childBox) && contentsY < childBox->frameRect().bottom()) in positionForPoint()
3589 return positionForPointRespectingEditingBoundaries(this, childBox, pointInContents); in positionForPoint()