Searched refs:rgbColor (Results 1 – 12 of 12) sorted by relevance
/external/webkit/WebCore/svg/ |
D | SVGColor.h | 60 PassRefPtr<RGBColor> rgbColor() const; 64 …void setRGBColor(const String& rgbColor) { ExceptionCode ignored = 0; setRGBColor(rgbColor, ignore… in setRGBColor() argument 65 void setRGBColor(const String& rgbColor, ExceptionCode&); 66 void setRGBColorICCColor(const String& rgbColor, const String& iccColor, ExceptionCode&); 67 …void setColor(unsigned short colorType, const String& rgbColor, const String& iccColor, ExceptionC…
|
D | SVGColor.cpp | 36 SVGColor::SVGColor(const String& rgbColor) in SVGColor() argument 39 setRGBColor(rgbColor); in SVGColor() 63 PassRefPtr<RGBColor> SVGColor::rgbColor() const in rgbColor() function in WebCore::SVGColor 68 void SVGColor::setRGBColor(const String& rgbColor, ExceptionCode& ec) in setRGBColor() argument 70 Color color = SVGColor::colorFromRGBColorString(rgbColor); in setRGBColor()
|
D | SVGColor.idl | 32 readonly attribute css::RGBColor rgbColor; 35 void setRGBColor(in core::DOMString rgbColor) 37 void setRGBColorICCColor(in core::DOMString rgbColor, 41 in core::DOMString rgbColor,
|
D | SVGPaint.idl | 47 in DOMString rgbColor,
|
/external/webkit/WebCore/css/ |
D | RGBColor.h | 38 static PassRefPtr<RGBColor> create(unsigned rgbColor); 48 RGBColor(unsigned rgbColor) in RGBColor() argument 49 : m_rgbColor(rgbColor) in RGBColor()
|
D | RGBColor.cpp | 32 PassRefPtr<RGBColor> RGBColor::create(unsigned rgbColor) in create() argument 34 return adoptRef(new RGBColor(rgbColor)); in create()
|
D | CSSPrimitiveValue.cpp | 809 RGBA32 rgbColor = m_value.rgbcolor; in cssText() local 811 Color::parseHexColor(m_value.string, rgbColor); in cssText() 812 Color color(rgbColor); in cssText()
|
/external/webkit/WebCore/accessibility/mac/ |
D | AccessibilityObjectWrapper.mm | 274 NSColor* rgbColor = [nsColor colorUsingColorSpaceName:NSDeviceRGBColorSpace]; 275 if (rgbColor == nil) 276 rgbColor = [NSColor blackColor]; 278 [rgbColor getRed:&components[0] green:&components[1] blue:&components[2] alpha:&components[3]];
|
/external/webkit/WebKit/mac/WebView/ |
D | WebHTMLView.mm | 4105 NSColor *rgbColor = [color colorUsingColorSpaceName:NSDeviceRGBColorSpace]; 4106 // FIXME: If color is non-nil and rgbColor is nil, that means we got some kind 4109 if (rgbColor == nil) 4111 float r = [rgbColor redComponent]; 4112 float g = [rgbColor greenComponent]; 4113 float b = [rgbColor blueComponent]; 4114 float a = [rgbColor alphaComponent];
|
/external/webkit/WebCore/ |
D | ChangeLog-2010-01-29 | 71834 Fix leaks of RGBColor instances from below SVGColor::rgbColor. 71837 (WebCore::SVGColor::rgbColor): Return a PassRefPtr to ensure that the newly-allocated 82925 (WebCore::SVGColor::rgbColor):
|
D | ChangeLog-2005-12-19 | 5326 (SVGColorImpl::rgbColor):
|
D | ChangeLog-2006-12-31 | 51514 (WebCore::SVGColor::rgbColor):
|