Home
last modified time | relevance | path

Searched refs:fragmentRect (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DRenderSVGInlineText.cpp188 … FloatRect fragmentRect(fragment.x, fragment.y - baseline, fragment.width, fragment.height); in positionForPoint() local
190 fragmentRect = fragmentTransform.mapRect(fragmentRect); in positionForPoint()
192 float distance = powf(fragmentRect.x() - absolutePoint.x(), 2) + in positionForPoint()
193 … powf(fragmentRect.y() + fragmentRect.height() / 2 - absolutePoint.y(), 2); in positionForPoint()
199 closestDistancePosition = fragmentRect.x(); in positionForPoint()
DSVGInlineTextBox.cpp169 …FloatRect fragmentRect = selectionRectForTextFragment(fragment, fragmentStartPosition, fragmentEnd… in localSelectionRect() local
171 fragmentRect = fragmentTransform.mapRect(fragmentRect); in localSelectionRect()
173 selectionRect.unite(fragmentRect); in localSelectionRect()
694 …FloatRect fragmentRect = textBox->selectionRectForTextFragment(fragment, fragmentStartPosition, fr… in paintTextMatchMarker() local
706 context->fillRect(fragmentRect, color); in paintTextMatchMarker()
709 fragmentRect = fragmentTransform.mapRect(fragmentRect); in paintTextMatchMarker()
710 markerRect.unite(fragmentRect); in paintTextMatchMarker()
732 FloatRect fragmentRect(fragment.x, fragment.y - baseline, fragment.width, fragment.height); in calculateBoundaries() local
734 fragmentRect = fragmentTransform.mapRect(fragmentRect); in calculateBoundaries()
736 textRect.unite(fragmentRect); in calculateBoundaries()
DSVGTextQuery.cpp443 FloatRect fragmentRect(fragment.x, fragment.y - baseline, fragment.width, fragment.height); in calculateFragmentBoundaries() local
445 return fragmentTransform.mapRect(fragmentRect); in calculateFragmentBoundaries()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderFlowThread.cpp261 LayoutRect fragmentRect(layerBoundingBox); in fragmentsBoundingBox() local
262 fragmentRect.intersect(fragment.paginationClip); in fragmentsBoundingBox()
263 fragmentRect.moveBy(fragment.paginationOffset); in fragmentsBoundingBox()
264 result.unite(fragmentRect); in fragmentsBoundingBox()