Searched defs:boxRect (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderVTTCue.cpp141 IntRect boxRect = box->absoluteBoundingBoxRect(); local
143 if (absoluteBoundingBoxRect().intersects(boxRect))
H A DInlineTextBox.h99 static AffineTransform rotation(const FloatRect& boxRect, RotationDirection);
200 inline AffineTransform InlineTextBox::rotation(const FloatRect& boxRect, RotationDirection rotationDirection) argument
202 return rotationDirection == Clockwise ? AffineTransform(0, 1, -1, 0, boxRect.x() + boxRect.maxY(), boxRect.maxY() - boxRect.x())
203 : AffineTransform(0, -1, 1, 0, boxRect.x() - boxRect.maxY(), boxRect.x() + boxRect
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGRootInlineBox.cpp126 FloatRect boxRect; local
131 boxRect = textBox->calculateBoundaries();
132 textBox->setX(boxRect.x());
133 textBox->setY(boxRect.y());
134 textBox->setLogicalWidth(boxRect.width());
135 textBox->setLogicalHeight(boxRect.height());
144 boxRect = flowBox->calculateBoundaries();
145 flowBox->setX(boxRect.x());
146 flowBox->setY(boxRect.y());
147 flowBox->setLogicalWidth(boxRect
[all...]

Completed in 79 milliseconds