HomeSort by relevance Sort by last modified time
    Searched refs:boxRect (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingConstraints.cpp 50 FloatRect boxRect = m_absoluteStickyBoxRect;
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/svg/
SVGRootInlineBox.cpp 137 FloatRect boxRect;
143 boxRect = textBox->calculateBoundaries();
144 textBox->setX(boxRect.x());
145 textBox->setY(boxRect.y());
146 textBox->setLogicalWidth(boxRect.width());
147 textBox->setLogicalHeight(boxRect.height());
156 boxRect = flowBox->calculateBoundaries();
157 flowBox->setX(boxRect.x());
158 flowBox->setY(boxRect.y());
159 flowBox->setLogicalWidth(boxRect.width())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderCombineText.h 34 void adjustTextOrigin(FloatPoint& textOrigin, const FloatRect& boxRect) const;
RenderCombineText.cpp 69 void RenderCombineText::adjustTextOrigin(FloatPoint& textOrigin, const FloatRect& boxRect) const
72 textOrigin.move(boxRect.height() / 2 - ceilf(m_combinedTextWidth) / 2, style()->font().pixelSize());
InlineTextBox.cpp 391 const FloatPoint& textOrigin, const FloatRect& boxRect,
413 textRunPaintInfo.bounds = boxRect;
469 static inline AffineTransform rotation(const FloatRect& boxRect, RotationDirection clockwise)
471 return clockwise ? AffineTransform(0, 1, -1, 0, boxRect.x() + boxRect.maxY(), boxRect.maxY() - boxRect.x())
472 : AffineTransform(0, -1, 1, 0, boxRect.x() - boxRect.maxY(), boxRect.x() + boxRect.maxY())
    [all...]
RenderTextTrackCue.cpp 148 IntRect boxRect = box->absoluteBoundingBoxRect();
150 if (absoluteBoundingBoxRect().intersects(boxRect))
EllipsisBox.cpp 75 FloatRect boxRect(boxOrigin, LayoutSize(logicalWidth(), logicalHeight()));
79 textRunPaintInfo.bounds = boxRect;
InlineBox.cpp 316 IntRect boxRect(left(), 0, m_logicalWidth, 10);
318 return !(boxRect.intersects(ellipsisRect));
RenderFlowThread.cpp 523 LayoutRect boxRect = transformState.mappedQuad().enclosingBoundingBox();
524 flipForWritingMode(boxRect);
530 LayoutPoint center = boxRect.center();
    [all...]
RenderBlock.cpp     [all...]

Completed in 346 milliseconds