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

  /external/webkit/Source/WebCore/platform/graphics/cairo/
ContextShadowCairo.cpp 133 void ContextShadow::drawRectShadowWithoutTiling(GraphicsContext* context, const IntRect& shadowRect, const IntSize& topLeftRadius, const IntSize& topRightRadius, const IntSize& bottomLeftRadius, const IntSize& bottomRightRadius, float alpha)
135 beginShadowLayer(context, shadowRect);
141 path.addRoundedRect(shadowRect, topLeftRadius, topRightRadius, bottomLeftRadius, bottomRightRadius);
215 FloatRect shadowRect = FloatRect(rect.location(), shadowBufferSize);
216 shadowRect.move(- m_blurDistance, - m_blurDistance);
229 calculateLayerBoundingRect(context, shadowRect, IntRect(x1, y1, x2 - x1, y2 - y1));
236 shadowRect.move(m_offset.width(), m_offset.height());
271 shadowRect.inflate(-radiusTwice);
272 if (!shadowRect.isEmpty()) {
275 path.addRoundedRect(shadowRect, topLeftRadius, topRightRadius, bottomLeftRadius, bottomRightRadius)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
ContextShadow.h 139 void drawRectShadowWithoutTiling(GraphicsContext*, const IntRect& shadowRect, const IntSize& topLeftRadius, const IntSize& topRightRadius, const IntSize& bottomLeftRadius, const IntSize& bottomRightRadius, float alpha);
ShadowBlur.cpp 82 void setLastShadowValues(float radius, const Color& color, ColorSpace colorSpace, const FloatRect& shadowRect, const RoundedIntRect::Radii& radii)
88 m_lastShadowRect = shadowRect;
92 void setLastInsetShadowValues(float radius, const Color& color, ColorSpace colorSpace, const FloatRect& bounds, const FloatRect& shadowRect, const RoundedIntRect::Radii& radii)
99 m_lastShadowRect = shadowRect;
103 bool matchesLastShadow(float radius, const Color& color, ColorSpace colorSpace, const FloatRect& shadowRect, const RoundedIntRect::Radii& radii) const
107 return m_lastRadius == radius && m_lastColor == color && m_lastColorSpace == colorSpace && shadowRect == m_lastShadowRect && radii == m_lastRadii;
110 bool matchesLastInsetShadow(float radius, const Color& color, ColorSpace colorSpace, const FloatRect& bounds, const FloatRect& shadowRect, const RoundedIntRect::Radii& radii) const
114 return m_lastRadius == radius && m_lastColor == color && m_lastColorSpace == colorSpace && m_lastInsetBounds == bounds && shadowRect == m_lastShadowRect && radii == m_lastRadii;
    [all...]
  /external/webkit/Source/WebCore/rendering/
InlineTextBox.cpp 376 FloatRect shadowRect(textRect);
377 shadowRect.inflate(shadowBlur);
378 shadowRect.move(shadowOffset);
380 context->clip(shadowRect);
    [all...]
RenderBoxModelObject.cpp     [all...]
RenderLayer.cpp     [all...]
  /external/webkit/Source/WebCore/platform/gtk/
RenderThemeGtk2.cpp 457 IntRect shadowRect(textFieldRect);
458 shadowRect.inflate(-focusWidth);
459 widgetContext.gtkPaintShadow(shadowRect, widget, GTK_STATE_NORMAL, GTK_SHADOW_IN, "entry");
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
SVGInlineTextBox.cpp 620 FloatRect shadowRect(FloatPoint(textOrigin.x(), textOrigin.y() - scaledFont.fontMetrics().floatAscent()), textSize);
628 extraOffset = applyShadowToGraphicsContext(context, shadow, shadowRect, false /* stroked */, true /* opaque */, true /* horizontal */);
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.cpp     [all...]

Completed in 706 milliseconds