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

  /gdk/samples/PhotoEditor/src/com/android/photoeditor/filters/
ShadowFilter.java 33 public void setShadow(float shadow) {
  /gdk/samples/PhotoEditor/src/com/android/photoeditor/actions/
ShadowAction.java 45 filter.setShadow(progress);
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.h 160 void setShadow(float width, float height, float blur);
161 void setShadow(float width, float height, float blur, const String& color);
162 void setShadow(float width, float height, float blur, float grayLevel);
163 void setShadow(float width, float height, float blur, const String& color, float alpha);
164 void setShadow(float width, float height, float blur, float grayLevel, float alpha);
165 void setShadow(float width, float height, float blur, float r, float g, float b, float a);
166 void setShadow(float width, float height, float blur, float c, float m, float y, float k, float a);
CanvasRenderingContext2D.idl 142 void setShadow(in float width, in float height, in float blur, in [Optional] DOMString color, in [Optional] float alpha);
143 void setShadow(in float width, in float height, in float blur, in float grayLevel, in [Optional] float alpha);
144 void setShadow(in float width, in float height, in float blur, in float r, in float g, in float b, in float a);
145 void setShadow(in float width, in float height, in float blur, in float c, in float m, in float y, in float k, in float a);
166 [Custom] void setShadow(/* 3 */);
CanvasRenderingContext2D.cpp 1069 void CanvasRenderingContext2D::setShadow(float width, float height, float blur)
1077 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, const String& color)
1087 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, float grayLevel)
1100 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, const String& color, float alpha)
1118 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, float grayLevel, float alpha)
1131 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, float r, float g, float b, float a)
    [all...]
  /external/webkit/Source/WebCore/rendering/
EllipsisBox.cpp 39 bool setShadow = false;
41 context->setShadow(IntSize(style->textShadow()->x(), style->textShadow()->y()),
43 setShadow = true;
62 if (setShadow)
InlineTextBox.cpp 386 context->setShadow(shadowOffset, shadowBlur, shadowColor, context->fillColorSpace());
    [all...]
RenderBoxModelObject.cpp     [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSCanvasRenderingContext2DCustom.cpp 299 JSValue JSCanvasRenderingContext2D::setShadow(ExecState* exec)
305 context->setShadow(exec->argument(0).toFloat(exec), exec->argument(1).toFloat(exec),
310 context->setShadow(exec->argument(0).toFloat(exec), exec->argument(1).toFloat(exec),
313 context->setShadow(exec->argument(0).toFloat(exec), exec->argument(1).toFloat(exec),
318 context->setShadow(exec->argument(0).toFloat(exec), exec->argument(1).toFloat(exec),
322 context->setShadow(exec->argument(0).toFloat(exec), exec->argument(1).toFloat(exec),
327 context->setShadow(exec->argument(0).toFloat(exec), exec->argument(1).toFloat(exec),
333 context->setShadow(exec->argument(0).toFloat(exec), exec->argument(1).toFloat(exec),
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextRecording.h 64 virtual void setShadow(int radius, int dx, int dy, SkColor c);
PlatformGraphicsContext.h 70 virtual void setShadow(int radius, int dx, int dy, SkColor c);
181 void setShadow(int radius, int dx, int dy, SkColor c);
PlatformGraphicsContext.cpp 139 void PlatformGraphicsContext::State::setShadow(int radius, int dx, int dy, SkColor c)
324 void PlatformGraphicsContext::setShadow(int radius, int dx, int dy, SkColor c)
326 m_state->setShadow(radius, dx, dy, c);
GraphicsContextAndroid.cpp 400 platformContext()->setShadow(blur, size.width(), size.height(), c);
408 platformContext()->setShadow(0, 0, 0, 0);
PlatformGraphicsContextRecording.cpp 127 void PlatformGraphicsContextRecording::setShadow(int radius, int dx, int dy, SkColor c)
129 PlatformGraphicsContext::setShadow(radius, dx, dy, c);
130 mGraphicsOperationCollection->append(new GraphicsOperation::SetShadow(radius, dx, dy, c));
GraphicsOperation.h 304 class SetShadow : public Operation {
306 SetShadow(int radius, int dx, int dy, SkColor c)
309 context->setShadow(m_radius, m_dx, m_dy, m_color);
  /external/webkit/Source/WebCore/css/
SVGCSSStyleSelector.cpp 546 return svgstyle->setShadow(m_parentStyle->svgStyle()->shadow() ? new ShadowData(*m_parentStyle->svgStyle()->shadow()) : 0);
548 return svgstyle->setShadow(0);
573 svgstyle->setShadow(shadowData);
  /external/webkit/Source/WebKit/win/
WebKitGraphics.cpp 113 context.setShadow(FloatSize(info->shadowOffset.cx, info->shadowOffset.cy), info->shadowBlur, info->shadowColor, ColorSpaceDeviceRGB);
  /external/webkit/Source/WebKit2/UIProcess/
FindIndicator.cpp 153 graphicsContext.setShadow(FloatSize(shadowOffsetX, shadowOffsetY), shadowBlurRadius, shadowColor(), ColorSpaceSRGB);
  /external/webkit/Source/WebCore/platform/graphics/mac/
FontMac.mm 246 context->setShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace);
  /external/webkit/Source/WebCore/rendering/svg/
SVGRenderSupport.cpp 103 paintInfo.context->setShadow(IntSize(shadow->x(), shadow->y()), shadow->blur(), shadow->color(), style->colorSpace());
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
FindController.cpp 303 graphicsContext.setShadow(FloatSize(shadowOffsetX, shadowOffsetY), shadowBlurRadius, holeShadowColor(fractionFadedIn), ColorSpaceSRGB);
  /external/webkit/Source/WebCore/rendering/style/
SVGRenderStyle.h 237 void setShadow(PassOwnPtr<ShadowData> obj) { shadowSVG.access()->shadow = obj; }
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext.h 409 void setShadow(const FloatSize&, float blur, const Color&, ColorSpace);
GraphicsContext.cpp 136 void GraphicsContext::setShadow(const FloatSize& offset, float blur, const Color& color, ColorSpace colorSpace)
  /external/webkit/Source/WebCore/platform/graphics/win/
FontCGWin.cpp 391 graphicsContext->setShadow(shadowOffset, shadowBlur, shadowColor, ColorSpaceDeviceRGB);

Completed in 216 milliseconds