/external/webkit/Source/WebCore/platform/graphics/filters/ |
D | LightSource.cpp | 37 bool LightSource::setAzimuth(float azimuth) in setAzimuth() 44 bool LightSource::setElevation(float elevation) in setElevation() 51 bool LightSource::setX(float x) in setX() 60 bool LightSource::setY(float y) in setY() 69 bool LightSource::setZ(float z) in setZ() 78 bool LightSource::setPointsAtX(float pointsAtX) in setPointsAtX() 85 bool LightSource::setPointsAtY(float pointsAtY) in setPointsAtY() 92 bool LightSource::setPointsAtZ(float pointsAtZ) in setPointsAtZ() 99 bool LightSource::setSpecularExponent(float specularExponent) in setSpecularExponent() 106 bool LightSource::setLimitingConeAngle(float limitingConeAngle) in setLimitingConeAngle()
|
D | FEDiffuseLighting.h | 30 class LightSource; variable 35 float, float, PassRefPtr<LightSource>); 53 const LightSource* lightSource() const; 54 void setLightSource(PassRefPtr<LightSource>); 61 FEDiffuseLighting(Filter*, const Color&, float, float, float, float, PassRefPtr<LightSource>);
|
D | FELighting.h | 73 …r*, LightingType, const Color&, float, float, float, float, float, float, PassRefPtr<LightSource>); 76 inline void inlineSetPixel(int offset, LightingData&, LightSource::PaintingData&, 80 void setPixel(int offset, LightingData&, LightSource::PaintingData&, 84 void drawInteriorPixels(LightingData&, LightSource::PaintingData&); 88 RefPtr<LightSource> m_lightSource;
|
D | FESpecularLighting.h | 33 float, float, float, PassRefPtr<LightSource>); 54 const LightSource* lightSource() const; 55 void setLightSource(PassRefPtr<LightSource>); 62 …pecularLighting(Filter*, const Color&, float, float, float, float, float, PassRefPtr<LightSource>);
|
D | LightSource.h | 42 class LightSource : public RefCounted<LightSource> { 63 LightSource(LightType type) in LightSource() function 67 virtual ~LightSource() { } in ~LightSource()
|
D | FEDiffuseLighting.cpp | 34 …float diffuseConstant, float kernelUnitLengthX, float kernelUnitLengthY, PassRefPtr<LightSource> l… in FEDiffuseLighting() 41 float kernelUnitLengthY, PassRefPtr<LightSource> lightSource) in create() 115 const LightSource* FEDiffuseLighting::lightSource() const in lightSource() 120 void FEDiffuseLighting::setLightSource(PassRefPtr<LightSource> lightSource) in setLightSource()
|
D | FESpecularLighting.cpp | 35 float kernelUnitLengthY, PassRefPtr<LightSource> lightSource) in FESpecularLighting() 42 float kernelUnitLengthX, float kernelUnitLengthY, PassRefPtr<LightSource> lightSource) in create() 130 const LightSource* FESpecularLighting::lightSource() const in lightSource() 135 void FESpecularLighting::setLightSource(PassRefPtr<LightSource> lightSource) in setLightSource()
|
D | PointLightSource.h | 31 class PointLightSource : public LightSource { 50 : LightSource(LS_POINT) in PointLightSource()
|
D | DistantLightSource.h | 31 class DistantLightSource : public LightSource { 50 : LightSource(LS_DISTANT) in DistantLightSource()
|
D | SpotLightSource.h | 31 class SpotLightSource : public LightSource { 61 : LightSource(LS_SPOT) in SpotLightSource()
|
D | FELighting.cpp | 45 float kernelUnitLengthX, float kernelUnitLengthY, PassRefPtr<LightSource> lightSource) in FELighting() 182 inline void FELighting::inlineSetPixel(int offset, LightingData& data, LightSource::PaintingData& p… in inlineSetPixel() 231 void FELighting::setPixel(int offset, LightingData& data, LightSource::PaintingData& paintingData, in setPixel() 239 LightSource::PaintingData paintingData; in drawLighting() 404 void FELighting::drawInteriorPixels(LightingData& data, LightSource::PaintingData& paintingData) in drawInteriorPixels()
|
/external/jhead/ |
D | makernote.c | 131 case 1: ImageInfo.LightSource = 1; break; // Sunny in ProcessCanonMakerNoteDir() 132 case 2: ImageInfo.LightSource = 1; break; // Cloudy in ProcessCanonMakerNoteDir() 133 case 3: ImageInfo.LightSource = 3; break; // Thungsten in ProcessCanonMakerNoteDir() 134 case 4: ImageInfo.LightSource = 2; break; // Fourescent in ProcessCanonMakerNoteDir() 135 case 5: ImageInfo.LightSource = 4; break; // Flash in ProcessCanonMakerNoteDir()
|
D | jhead.h | 103 int LightSource; member
|
D | exif.c | 897 ImageInfo.LightSource = (int)ConvertAnyFormat(ValuePtr, Format); in ProcessExifDir() 1779 switch(ImageInfo.LightSource) { in ShowImageInfo()
|
/external/webkit/Source/WebCore/svg/ |
D | SVGFELightElement.h | 34 virtual PassRefPtr<LightSource> lightSource() const = 0; 36 static PassRefPtr<LightSource> findLightSource(const SVGElement*);
|
D | SVGFEDiffuseLightingElement.cpp | 102 LightSource* lightSource = const_cast<LightSource*>(diffuseLighting->lightSource()); in setFilterEffectAttribute() 204 RefPtr<LightSource> lightSource = SVGFELightElement::findLightSource(this); in build()
|
D | SVGFESpecularLightingElement.cpp | 109 LightSource* lightSource = const_cast<LightSource*>(specularLighting->lightSource()); in setFilterEffectAttribute() 215 RefPtr<LightSource> lightSource = SVGFELightElement::findLightSource(this); in build()
|
D | SVGFEDistantLightElement.h | 35 virtual PassRefPtr<LightSource> lightSource() const;
|
D | SVGFESpotLightElement.h | 35 virtual PassRefPtr<LightSource> lightSource() const;
|
D | SVGFEPointLightElement.h | 35 virtual PassRefPtr<LightSource> lightSource() const;
|
D | SVGFEDistantLightElement.cpp | 39 PassRefPtr<LightSource> SVGFEDistantLightElement::lightSource() const in lightSource()
|
D | SVGFEPointLightElement.cpp | 39 PassRefPtr<LightSource> SVGFEPointLightElement::lightSource() const in lightSource()
|
D | SVGFESpotLightElement.cpp | 39 PassRefPtr<LightSource> SVGFESpotLightElement::lightSource() const in lightSource()
|
D | SVGFELightElement.cpp | 68 PassRefPtr<LightSource> SVGFELightElement::findLightSource(const SVGElement* svgElement) in findLightSource()
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/ |
D | exif.js | 182 LightSource : { property
|