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

  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
TestTypedefs.idl 45 void setShadow(DOUBLE width, DOUBLE height, float blur, [StrictTypeChecking] optional STRING color, optional DOUBLE alpha);
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.h 155 void setShadow(float width, float height, float blur);
156 void setShadow(float width, float height, float blur, const String& color);
157 void setShadow(float width, float height, float blur, float grayLevel);
158 void setShadow(float width, float height, float blur, const String& color, float alpha);
159 void setShadow(float width, float height, float blur, float grayLevel, float alpha);
160 void setShadow(float width, float height, float blur, float r, float g, float b, float a);
161 void setShadow(float width, float height, float blur, float c, float m, float y, float k, float a);
286 void setShadow(const FloatSize& offset, float blur, RGBA32 color);
CanvasRenderingContext2D.idl 138 void setShadow(float width, float height, float blur, [StrictTypeChecking] optional DOMString color, optional float alpha);
139 void setShadow(float width, float height, float blur, float grayLevel, optional float alpha);
140 void setShadow(float width, float height, float blur, float r, float g, float b, float a);
141 void setShadow(float width, float height, float blur, float c, float m, float y, float k, float a);
CanvasRenderingContext2D.cpp 1095 void CanvasRenderingContext2D::setShadow(float width, float height, float blur)
1097 setShadow(FloatSize(width, height), blur, Color::transparent);
1100 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, const String& color)
1105 setShadow(FloatSize(width, height), blur, rgba);
1108 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, float grayLevel)
1110 setShadow(FloatSize(width, height), blur, makeRGBA32FromFloats(grayLevel, grayLevel, grayLevel, 1));
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 687 void setShadow(Value *V, Value *SV) {
738 /// This function either returns the value set earlier with setShadow,
    [all...]
  /development/samples/devbytes/animation/CardFlip/src/com/example/android/cardflip/
CardView.java 181 public void setShadow(float value) {
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestTypedefs.cpp 308 imp->setShadow(width, height, blur);
314 imp->setShadow(width, height, blur, color);
319 imp->setShadow(width, height, blur, color, alpha);
521 {"setShadow", TestTypedefsV8Internal::setShadowMethodCallback, 0, 3},
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
GraphicsContext.h 299 void setShadow(const FloatSize& offset, float blur, const Color&,
GraphicsContext.cpp 273 void GraphicsContext::setShadow(const FloatSize& offset, float blur, const Color& color,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineTextBox.cpp     [all...]
RenderThemeChromiumMac.mm     [all...]
RenderBoxModelObject.cpp 519 context->setShadow(shadowOffset, boxShadow->blur(), renderer->resolveColor(boxShadow->color()),
    [all...]

Completed in 586 milliseconds