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

/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasRenderingContext2D.h174 void setShadow(float width, float height, float blur);
175 void setShadow(float width, float height, float blur, const String& color);
176 void setShadow(float width, float height, float blur, float grayLevel);
177 void setShadow(float width, float height, float blur, const String& color, float alpha);
178 void setShadow(float width, float height, float blur, float grayLevel, float alpha);
179 void setShadow(float width, float height, float blur, float r, float g, float b, float a);
180 void setShadow(float width, float height, float blur, float c, float m, float y, float k, float a);
307 void setShadow(const FloatSize& offset, float blur, RGBA32 color);
H A DCanvasRenderingContext2D.idl182 [MeasureAs=CanvasRenderingContext2DSetShadow] void setShadow(unrestricted float width, unrestricted float height, unrestricted float blur, optional DOMString color, optional unrestricted float alpha);
183 [MeasureAs=CanvasRenderingContext2DSetShadow] void setShadow(unrestricted float width, unrestricted float height, unrestricted float blur, unrestricted float grayLevel, optional unrestricted float alpha);
184 [MeasureAs=CanvasRenderingContext2DSetShadow] void setShadow(unrestricted float width, unrestricted float height, unrestricted float blur, unrestricted float r, unrestricted float g, unrestricted float b, unrestricted float a);
185 [MeasureAs=CanvasRenderingContext2DSetShadow] void setShadow(unrestricted float width, unrestricted float height, unrestricted float blur, unrestricted float c, unrestricted float m, unrestricted float y, unrestricted float k, unrestricted float a);
H A DCanvasRenderingContext2D.cpp1354 void CanvasRenderingContext2D::setShadow(float width, float height, float blur) function in class:blink::CanvasRenderingContext2D
1356 setShadow(FloatSize(width, height), blur, Color::transparent);
1359 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, const String& color) function in class:blink::CanvasRenderingContext2D
1364 setShadow(FloatSize(width, height), blur, rgba);
1367 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, float grayLevel) function in class:blink::CanvasRenderingContext2D
1369 setShadow(FloatSize(width, height), blur, makeRGBA32FromFloats(grayLevel, grayLevel, grayLevel, 1));
1372 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, const String& color, float alpha) function in class:blink::CanvasRenderingContext2D
1377 setShadow(FloatSize(width, height), blur, colorWithOverrideAlpha(rgba, alpha));
1380 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, float grayLevel, float alpha) function in class:blink::CanvasRenderingContext2D
1382 setShadow(FloatSiz
1385 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, float r, float g, float b, float a) function in class:blink::CanvasRenderingContext2D
1390 void CanvasRenderingContext2D::setShadow(float width, float height, float blur, float c, float m, float y, float k, float a) function in class:blink::CanvasRenderingContext2D
1400 void CanvasRenderingContext2D::setShadow(const FloatSize& offset, float blur, RGBA32 color) function in class:blink::CanvasRenderingContext2D
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp856 void setShadow(Value *V, Value *SV) { function in struct:__anon26257::MemorySanitizerVisitor
907 /// This function either returns the value set earlier with setShadow,
1080 setShadow(&I,
1083 setShadow(&I, getCleanShadow(&I));
1129 setShadow(&I, getCleanShadow(&I));
1146 setShadow(&I, IRB.CreateExtractElement(getShadow(&I, 0), I.getOperand(1),
1154 setShadow(&I, IRB.CreateInsertElement(getShadow(&I, 0), getShadow(&I, 1),
1162 setShadow(&I, IRB.CreateShuffleVector(getShadow(&I, 0), getShadow(&I, 1),
1170 setShadow(&I, IRB.CreateSExt(getShadow(&I, 0), I.getType(), "_msprop"));
1176 setShadow(
[all...]
H A DDataFlowSanitizer.cpp288 void setShadow(Instruction *I, Value *Shadow);
858 void DFSanFunction::setShadow(Instruction *I, Value *Shadow) { function in class:DFSanFunction
918 DFSF.setShadow(&I, CombinedShadow);
1045 DFSF.setShadow(&LI, Shadow);
1169 DFSF.setShadow(&I, DFSF.DFS.ZeroShadow);
1178 DFSF.setShadow(
1190 DFSF.setShadow(&I, DFSF.DFS.combineShadows(CondShadow, ShadowSel, &I));
1267 DFSF.setShadow(CS.getInstruction(), DFSF.DFS.ZeroShadow);
1272 DFSF.setShadow(CS.getInstruction(), DFSF.DFS.ZeroShadow);
1342 DFSF.setShadow(CustomC
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsContext.h353 void setShadow(const FloatSize& offset, float blur, const Color&,
H A DGraphicsContext.cpp299 void GraphicsContext::setShadow(const FloatSize& offset, float blur, const Color& color, function in class:blink::GraphicsContext
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderThemeChromiumMac.mm1380 paintInfo.context->setShadow(shadowOffset, sliderThumbShadowBlur, shadowColor);
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DBoxPainter.cpp201 context->setShadow(shadowOffset, boxShadow.blur(), boxShadow.color(),

Completed in 2027 milliseconds