Searched refs:setShadow (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
H A DTestTypedefs.idl45 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/
H A DCanvasRenderingContext2D.h155 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);
H A DCanvasRenderingContext2D.idl138 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);
H A DCanvasRenderingContext2D.cpp1095 void CanvasRenderingContext2D::setShadow(float width, float height, float blur) function in class:WebCore::CanvasRenderingContext2D
1097 setShadow(FloatSize(width, height), blur, Color::transparent);
1100 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, const String& color) function in class:WebCore::CanvasRenderingContext2D
1105 setShadow(FloatSize(width, height), blur, rgba);
1108 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, float grayLevel) function in class:WebCore::CanvasRenderingContext2D
1110 setShadow(FloatSize(width, height), blur, makeRGBA32FromFloats(grayLevel, grayLevel, grayLevel, 1));
1113 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, const String& color, float alpha) function in class:WebCore::CanvasRenderingContext2D
1118 setShadow(FloatSize(width, height), blur, colorWithOverrideAlpha(rgba, alpha));
1121 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, float grayLevel, float alpha) function in class:WebCore::CanvasRenderingContext2D
1123 setShadow(FloatSiz
1126 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, float r, float g, float b, float a) function in class:WebCore::CanvasRenderingContext2D
1131 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, float c, float m, float y, float k, float a) function in class:WebCore::CanvasRenderingContext2D
1141 void CanvasRenderingContext2D::setShadow(const FloatSize& offset, float blur, RGBA32 color) function in class:WebCore::CanvasRenderingContext2D
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp687 void setShadow(Value *V, Value *SV) { function in struct:__anon21620::MemorySanitizerVisitor
738 /// This function either returns the value set earlier with setShadow,
867 setShadow(&I,
870 setShadow(&I, getCleanShadow(&I));
899 setShadow(&I, IRB.CreateExtractElement(getShadow(&I, 0), I.getOperand(1),
907 setShadow(&I, IRB.CreateInsertElement(getShadow(&I, 0), getShadow(&I, 1),
915 setShadow(&I, IRB.CreateShuffleVector(getShadow(&I, 0), getShadow(&I, 1),
923 setShadow(&I, IRB.CreateSExt(getShadow(&I, 0), I.getType(), "_msprop"));
929 setShadow(&I, IRB.CreateZExt(getShadow(&I, 0), I.getType(), "_msprop"));
935 setShadow(
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
H A DV8TestTypedefs.cpp308 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/
H A DGraphicsContext.h299 void setShadow(const FloatSize& offset, float blur, const Color&,
H A DGraphicsContext.cpp273 void GraphicsContext::setShadow(const FloatSize& offset, float blur, const Color& color, function in class:WebCore::GraphicsContext
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DInlineTextBox.cpp1136 context->setShadow(FloatSize(shadowX, shadowY - extraOffset), shadow->blur(),
H A DRenderThemeChromiumMac.mm1542 paintInfo.context->setShadow(shadowOffset, sliderThumbShadowBlur, shadowColor);
H A DRenderBoxModelObject.cpp519 context->setShadow(shadowOffset, boxShadow->blur(), renderer->resolveColor(boxShadow->color()),

Completed in 159 milliseconds