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

  /external/webkit/WebCore/html/canvas/
CanvasRenderingContext2D.h 147 void setShadow(float width, float height, float blur);
148 void setShadow(float width, float height, float blur, const String& color);
149 void setShadow(float width, float height, float blur, float grayLevel);
150 void setShadow(float width, float height, float blur, const String& color, float alpha);
151 void setShadow(float width, float height, float blur, float grayLevel, float alpha);
152 void setShadow(float width, float height, float blur, float r, float g, float b, float a);
153 void setShadow(float width, float height, float blur, float c, float m, float y, float k, float a);
CanvasRenderingContext2D.cpp 306 // FIXME: What should this return if you called setShadow with a non-string color?
799 void CanvasRenderingContext2D::setShadow(float width, float height, float blur)
807 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, const String& color)
815 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, float grayLevel)
826 c->setShadow(IntSize(width, -height), state().m_shadowBlur, Color(rgba), DeviceColorSpace);
829 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, const String& color, float alpha)
842 c->setShadow(IntSize(width, -height), state().m_shadowBlur, Color(colorWithOverrideAlpha(rgba, alpha)), DeviceColorSpace);
845 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, float grayLevel, float alpha)
856 c->setShadow(IntSize(width, -height), state().m_shadowBlur, Color(rgba), DeviceColorSpace);
859 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, float r, float g, float b, float a
    [all...]
CanvasRenderingContext2D.idl 106 [Custom] void setShadow(/* 3 */);
  /external/webkit/WebCore/rendering/
EllipsisBox.cpp 37 bool setShadow = false;
39 context->setShadow(IntSize(style->textShadow()->x, style->textShadow()->y),
41 setShadow = true;
60 if (setShadow)
SVGInlineTextBox.cpp 410 bool setShadow = false;
412 paintInfo.context->setShadow(IntSize(styleToUse->textShadow()->x, styleToUse->textShadow()->y),
415 setShadow = true;
444 if (setShadow)
InlineTextBox.cpp 302 context->setShadow(shadowOffset, shadowBlur, shadowColor, fillColorSpace);
694 bool setShadow = false;
703 context->setShadow(IntSize(shadow->x, shadow->y - extraOffset), shadow->blur, shadow->color, colorSpace);
704 setShadow = true;
728 else if (setShadow)
    [all...]
InlineFlowBox.cpp     [all...]
SVGRenderSupport.cpp 106 paintInfo.context->setShadow(IntSize(shadow->x, shadow->y), shadow->blur, shadow->color, style->colorSpace());
RenderBoxModelObject.cpp     [all...]
  /external/webkit/WebCore/bindings/js/
JSCanvasRenderingContext2DCustom.cpp 289 JSValue JSCanvasRenderingContext2D::setShadow(ExecState* exec, const ArgList& args)
295 context->setShadow(args.at(0).toFloat(exec), args.at(1).toFloat(exec),
300 context->setShadow(args.at(0).toFloat(exec), args.at(1).toFloat(exec),
303 context->setShadow(args.at(0).toFloat(exec), args.at(1).toFloat(exec),
308 context->setShadow(args.at(0).toFloat(exec), args.at(1).toFloat(exec),
312 context->setShadow(args.at(0).toFloat(exec), args.at(1).toFloat(exec),
317 context->setShadow(args.at(0).toFloat(exec), args.at(1).toFloat(exec),
323 context->setShadow(args.at(0).toFloat(exec), args.at(1).toFloat(exec),
  /external/webkit/WebCore/bindings/v8/custom/
V8CanvasRenderingContext2DCustom.cpp 180 INC_STATS("DOM.CanvasRenderingContext2D.setShadow()");
185 context->setShadow(toFloat(args[0]), toFloat(args[1]), toFloat(args[2]));
189 context->setShadow(toFloat(args[0]), toFloat(args[1]), toFloat(args[2]), toWebCoreString(args[3]));
191 context->setShadow(toFloat(args[0]), toFloat(args[1]), toFloat(args[2]), toFloat(args[3]));
195 context->setShadow(toFloat(args[0]), toFloat(args[1]), toFloat(args[2]), toWebCoreString(args[3]), toFloat(args[4]));
197 context->setShadow(toFloat(args[0]), toFloat(args[1]), toFloat(args[2]), toFloat(args[3]), toFloat(args[4]));
200 context->setShadow(toFloat(args[0]), toFloat(args[1]), toFloat(args[2]), toFloat(args[3]), toFloat(args[4]), toFloat(args[5]), toFloat(args[6]));
203 context->setShadow(toFloat(args[0]), toFloat(args[1]), toFloat(args[2]), toFloat(args[3]), toFloat(args[4]), toFloat(args[5]), toFloat(args[6]), toFloat(args[7]));
206 V8Proxy::throwError(V8Proxy::SyntaxError, "setShadow: Invalid number of arguments");
  /external/webkit/WebCore/css/
SVGCSSStyleSelector.cpp 530 return svgstyle->setShadow(m_parentStyle->svgStyle()->shadow() ? new ShadowData(*m_parentStyle->svgStyle()->shadow()) : 0);
532 return svgstyle->setShadow(0);
554 svgstyle->setShadow(shadowData);
  /external/webkit/WebKit/win/
WebKitGraphics.cpp 117 context.setShadow(info->shadowOffset, info->shadowBlur, info->shadowColor, DeviceColorSpace);
  /external/webkit/WebCore/platform/graphics/mac/
FontMac.mm 145 context->setShadow(shadowSize, shadowBlur, shadowColor, fillColorSpace);
  /external/webkit/WebCore/platform/graphics/cairo/
FontCairo.cpp 189 context->setShadow(shadowSize, shadowBlur, shadowColor, DeviceColorSpace);
  /external/webkit/WebCore/platform/graphics/android/
GraphicsContextAndroid.cpp 127 void setShadow(int radius, int dx, int dy, SkColor c) {
887 m_data->mState->setShadow(blur, size.width(), size.height(), c);
895 m_data->mState->setShadow(0, 0, 0, 0);
    [all...]
  /external/webkit/WebCore/platform/graphics/
GraphicsContext.h 301 void setShadow(const IntSize&, int blur, const Color&, ColorSpace);
GraphicsContext.cpp 132 void GraphicsContext::setShadow(const IntSize& size, int blur, const Color& color, ColorSpace colorSpace)
  /external/webkit/WebCore/platform/graphics/gtk/
FontGtk.cpp 262 context->setShadow(shadowSize, shadowBlur, shadowColor, DeviceColorSpace);
  /external/webkit/WebCore/platform/graphics/win/
FontCGWin.cpp 384 graphicsContext->setShadow(shadowSize, shadowBlur, shadowColor, DeviceColorSpace);

Completed in 476 milliseconds