Searched refs:logicalRect (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DShape.cpp153 FloatRect logicalRect = physicalRectToLogical(rect, logicalBoxSize.height().toFloat(), writingMode); local
162 cornerRadii.scale(calcBorderRadiiConstraintScaleFor(logicalRect, cornerRadii));
164 shape = createInsetShape(FloatRoundedRect(logicalRect, cornerRadii));
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderInline.cpp978 LayoutRect logicalRect = currBox->logicalVisualOverflowRectForPropagation(style()); local
980 logicalRect.moveBy(currBox->location());
981 result.uniteIfNonZero(logicalRect);
983 logicalRect.moveBy(currBox->location());
984 result.uniteIfNonZero(logicalRect.transposedRect());
H A DRootInlineBox.cpp329 LayoutRect logicalRect(lastLogicalLeft, selTop, box->logicalLeft() - lastLogicalLeft, selHeight);
330 logicalRect.move(renderer().isHorizontalWritingMode() ? offsetFromRootBlock : LayoutSize(offsetFromRootBlock.height(), offsetFromRootBlock.width()));
331 LayoutRect gapRect = rootBlock->logicalRectToPhysicalRect(rootBlockPhysicalPosition, logicalRect);
H A DRenderBlock.h173 LayoutRect logicalRectToPhysicalRect(const LayoutPoint& physicalPosition, const LayoutRect& logicalRect) const;
H A DRenderBlock.cpp1884 LayoutRect RenderBlock::logicalRectToPhysicalRect(const LayoutPoint& rootBlockPhysicalPosition, const LayoutRect& logicalRect) const
1888 result = logicalRect;
1890 result = LayoutRect(logicalRect.y(), logicalRect.x(), logicalRect.height(), logicalRect.width());
H A DRenderBlockFlow.cpp2767 LayoutRect logicalRect(curr->logicalLeft(), selTop, curr->logicalWidth(), selTop + selHeight);
2768 logicalRect.move(isHorizontalWritingMode() ? offsetFromRootBlock : offsetFromRootBlock.transposedSize());
2769 LayoutRect physicalRect = rootBlock->logicalRectToPhysicalRect(rootBlockPhysicalPosition, logicalRect);
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasRenderingContext2D.cpp1827 FloatRect logicalRect(sx, sy, sw, sh);
1828 if (logicalRect.width() < 1)
1829 logicalRect.setWidth(1);
1830 if (logicalRect.height() < 1)
1831 logicalRect.setHeight(1);
1832 if (!logicalRect.isExpressibleAsIntRect())
1835 IntRect imageDataRect = enclosingIntRect(logicalRect);

Completed in 204 milliseconds