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

  /external/webkit/Source/WebCore/dom/
CanvasSurface.cpp 106 IntRect CanvasSurface::convertLogicalToDevice(const FloatRect& logicalRect) const
108 return IntRect(convertLogicalToDevice(logicalRect.location()), convertLogicalToDevice(logicalRect.size()));
  /external/webkit/Source/WebCore/html/
HTMLCanvasElement.cpp 391 IntRect HTMLCanvasElement::convertLogicalToDevice(const FloatRect& logicalRect) const
394 int left = clampToInteger(floorf(logicalRect.x() * m_pageScaleFactor));
395 int top = clampToInteger(floorf(logicalRect.y() * m_pageScaleFactor));
396 int right = clampToInteger(ceilf(logicalRect.maxX() * m_pageScaleFactor));
397 int bottom = clampToInteger(ceilf(logicalRect.maxY() * m_pageScaleFactor));
  /external/webkit/Source/WebCore/rendering/
RootInlineBox.cpp 339 IntRect logicalRect(lastLogicalLeft, selTop, box->logicalLeft() - lastLogicalLeft, selHeight);
340 logicalRect.move(renderer()->isHorizontalWritingMode() ? offsetFromRootBlock : IntSize(offsetFromRootBlock.height(), offsetFromRootBlock.width()));
341 IntRect gapRect = rootBlock->logicalRectToPhysicalRect(rootBlockPhysicalPosition, logicalRect);
    [all...]
RenderInline.cpp     [all...]
RenderBlock.cpp     [all...]
RenderBlock.h 129 IntRect logicalRectToPhysicalRect(const IntPoint& physicalPosition, const IntRect& logicalRect);
    [all...]

Completed in 283 milliseconds