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

  /external/webkit/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 138 void GraphicsContext::calculateShadowBufferDimensions(IntSize& shadowBufferSize, FloatRect& shadowRect, float& kernelSize, const FloatRect& sourceRect, const IntSize& shadowSize, int shadowBlur)
148 shadowRect = FloatRect(sourceRect.location(), shadowBufferSize);
149 shadowRect.move(shadowSize.width() - kernelSize, shadowSize.height() - kernelSize);
173 FloatRect shadowRect;
175 GraphicsContext::calculateShadowBufferDimensions(shadowBufferSize, shadowRect, kernelSize, rect, shadowSize, shadowBlur);
192 context->createPlatformShadow(shadowBuffer.release(), shadowColor, shadowRect, kernelSize);
562 FloatRect shadowRect;
564 GraphicsContext::calculateShadowBufferDimensions(shadowBufferSize, shadowRect, kernelSize, rect, shadowSize, shadowBlur);
571 context->createPlatformShadow(shadowBuffer.release(), shadowColor, shadowRect, kernelSize);
848 void GraphicsContext::createPlatformShadow(PassOwnPtr<ImageBuffer> buffer, const Color& shadowColor, const FloatRect& shadowRect, float kernelSize
    [all...]
FontCairo.cpp 95 FloatRect shadowRect;
97 GraphicsContext::calculateShadowBufferDimensions(shadowBufferSize, shadowRect, kernelSize, rect, shadowSize, shadowBlur);
115 context->createPlatformShadow(shadowBuffer.release(), shadowColor, shadowRect, kernelSize);
ImageCairo.cpp 142 FloatRect shadowRect;
144 GraphicsContext::calculateShadowBufferDimensions(shadowBufferSize, shadowRect, kernelSize, dstRect, shadowSize, shadowBlur);
155 context->createPlatformShadow(shadowBuffer.release(), shadowColor, shadowRect, kernelSize);
  /external/webkit/WebCore/rendering/
InlineTextBox.cpp 293 IntRect shadowRect(x, y, w, h);
294 shadowRect.inflate(shadowBlur);
295 shadowRect.move(shadowOffset);
297 context->clip(shadowRect);
680 IntRect shadowRect(tx, ty, width, baseline + 2);
681 shadowRect.inflate(s->blur);
682 shadowRect.move(s->x, s->y);
683 clipRect.unite(shadowRect);
    [all...]
InlineFlowBox.cpp     [all...]