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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRenderingContext.cpp 219 IntSize clampedSize = clampedAbsoluteSize(paintRect.size());
220 OwnPtr<ImageBuffer> image = ImageBuffer::create(clampedSize, 1, renderingMode);
227 imageContext->scale(FloatSize(static_cast<float>(clampedSize.width()) / paintRect.width(),
228 static_cast<float>(clampedSize.height()) / paintRect.height()));
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
GraphicsLayer.cpp 918 FloatSize clampedSize = size;
919 if (clampedSize.width() < 0 || clampedSize.height() < 0)
920 clampedSize = FloatSize();
922 if (clampedSize == m_size)
925 m_size = clampedSize;
    [all...]

Completed in 49 milliseconds