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 DRootInlineBox.cpp338 LayoutRect logicalRect(lastLogicalLeft, selTop, box->logicalLeft() - lastLogicalLeft, selHeight);
339 logicalRect.move(renderer().isHorizontalWritingMode() ? offsetFromRootBlock : LayoutSize(offsetFromRootBlock.height(), offsetFromRootBlock.width()));
340 LayoutRect gapRect = rootBlock->logicalRectToPhysicalRect(rootBlockPhysicalPosition, logicalRect);
H A DRenderInline.cpp954 LayoutRect logicalRect = currBox->logicalVisualOverflowRectForPropagation(style()); local
956 logicalRect.moveBy(currBox->location());
957 result.uniteIfNonZero(logicalRect);
959 logicalRect.moveBy(currBox->location());
960 result.uniteIfNonZero(logicalRect.transposedRect());
H A DRenderBlock.h175 LayoutRect logicalRectToPhysicalRect(const LayoutPoint& physicalPosition, const LayoutRect& logicalRect);
H A DRenderBlock.cpp2295 LayoutRect RenderBlock::logicalRectToPhysicalRect(const LayoutPoint& rootBlockPhysicalPosition, const LayoutRect& logicalRect) argument
2299 result = logicalRect;
2301 result = LayoutRect(logicalRect.y(), logicalRect.x(), logicalRect.height(), logicalRect.width());
H A DRenderBlockFlow.cpp2635 LayoutRect logicalRect(curr->logicalLeft(), selTop, curr->logicalWidth(), selTop + selHeight);
2636 logicalRect.move(isHorizontalWritingMode() ? offsetFromRootBlock : offsetFromRootBlock.transposedSize());
2637 LayoutRect physicalRect = rootBlock->logicalRectToPhysicalRect(rootBlockPhysicalPosition, logicalRect);
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasRenderingContext2D.cpp1818 FloatRect logicalRect(sx, sy, sw, sh);
1819 if (logicalRect.width() < 1)
1820 logicalRect.setWidth(1);
1821 if (logicalRect.height() < 1)
1822 logicalRect.setHeight(1);
1823 if (!logicalRect.isExpressibleAsIntRect())
1826 IntRect imageDataRect = enclosingIntRect(logicalRect);

Completed in 301 milliseconds