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

/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
H A DScrollingConstraints.cpp50 FloatRect boxRect = m_absoluteStickyBoxRect; local
59 boxRect.move(rightDelta, 0);
69 boxRect.move(leftDelta, 0);
79 boxRect.move(0, bottomDelta);
89 boxRect.move(0, topDelta);
92 return boxRect.location() - m_absoluteStickyBoxRect.location();
/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.h102 static AffineTransform rotation(const FloatRect& boxRect, RotationDirection);
211 inline AffineTransform InlineTextBox::rotation(const FloatRect& boxRect, RotationDirection rotationDirection) argument
213 return rotationDirection == Clockwise ? AffineTransform(0, 1, -1, 0, boxRect.x() + boxRect.maxY(), boxRect.maxY() - boxRect.x())
214 : AffineTransform(0, -1, 1, 0, boxRect.x() - boxRect.maxY(), boxRect.x() + boxRect
[all...]
H A DInlineTextBox.cpp395 const FloatPoint& textOrigin, const FloatRect& boxRect,
416 textRunPaintInfo.bounds = boxRect;
532 FloatRect boxRect(boxOrigin, LayoutSize(logicalWidth(), logicalHeight()));
538 context->concatCTM(rotation(boxRect, Clockwise));
640 combinedText->adjustTextOrigin(textOrigin, boxRect);
700 paintTextWithShadows(context, rendererToUse, font, textRun, nullAtom, 0, 0, length, length, textOrigin, boxRect, textShadow, textStrokeWidth > 0, isHorizontal());
702 paintTextWithShadows(context, rendererToUse, font, textRun, nullAtom, 0, ePos, sPos, length, textOrigin, boxRect, textShadow, textStrokeWidth > 0, isHorizontal());
710 FloatPoint emphasisMarkTextOrigin = combinedText ? FloatPoint(boxOrigin.x() + boxRect.width() / 2, boxOrigin.y() + font.fontMetrics().ascent()) : textOrigin;
712 context->concatCTM(rotation(boxRect, Clockwise));
726 paintTextWithShadows(context, rendererToUse, combinedText ? combinedText->originalFont() : font, emphasisMarkTextRun, emphasisMark, emphasisMarkOffset, startOffset, endOffset, paintRunLength, emphasisMarkTextOrigin, boxRect, textShado
391 paintTextWithShadows(GraphicsContext* context, const RenderObject& renderer, const Font& font, const TextRun& textRun, const AtomicString& emphasisMark, int emphasisMarkOffset, int startOffset, int endOffset, int truncationPoint, const FloatPoint& textOrigin, const FloatRect& boxRect, const ShadowList* shadowList, bool stroked, bool horizontal) argument
[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 123 milliseconds