Home
last modified time | relevance | path

Searched refs:rgbColor (Results 1 – 15 of 15) sorted by relevance

/external/webkit/Source/WebCore/svg/
DSVGColor.cpp38 PassRefPtr<RGBColor> SVGColor::rgbColor() const in rgbColor() function in WebCore::SVGColor
43 void SVGColor::setRGBColor(const String& rgbColor, ExceptionCode& ec) in setRGBColor() argument
45 Color color = SVGColor::colorFromRGBColorString(rgbColor); in setRGBColor()
65 void SVGColor::setRGBColorICCColor(const String& rgbColor, const String& iccColor, ExceptionCode& e… in setRGBColorICCColor() argument
67 if (rgbColor.isEmpty() || iccColor.isEmpty()) { in setRGBColorICCColor()
73 setRGBColor(rgbColor, ec); in setRGBColorICCColor()
81 void SVGColor::setColor(unsigned short colorType, const String& rgbColor, const String& iccColor, E… in setColor() argument
107 if (requiresRGBColor && rgbColor.isEmpty()) { in setColor()
127 setRGBColorICCColor(rgbColor, iccColor, ec); in setColor()
129 setRGBColor(rgbColor, ec); in setColor()
DSVGColor.h43 static PassRefPtr<SVGColor> createFromString(const String& rgbColor) in createFromString() argument
46 color->setColor(colorFromRGBColorString(rgbColor)); in createFromString()
50 static PassRefPtr<SVGColor> createFromColor(const Color& rgbColor) in createFromColor() argument
53 color->setColor(rgbColor); in createFromColor()
64 PassRefPtr<RGBColor> rgbColor() const;
68 void setRGBColor(const String& rgbColor, ExceptionCode&);
69 void setRGBColorICCColor(const String& rgbColor, const String& iccColor, ExceptionCode&);
70 …void setColor(unsigned short colorType, const String& rgbColor, const String& iccColor, ExceptionC…
DSVGColor.idl31 readonly attribute RGBColor rgbColor;
34 [StrictTypeChecking, RequiresAllArguments=Raise] void setRGBColor(in DOMString rgbColor)
37 …king, RequiresAllArguments=Raise] void setRGBColorICCColor(in DOMString rgbColor, in DOMString icc…
40 …rguments=Raise] void setColor(in unsigned short colorType, in DOMString rgbColor, in DOMString icc…
DSVGPaint.cpp85 void SVGPaint::setPaint(unsigned short paintType, const String& uri, const String& rgbColor, const … in setPaint() argument
128 setColor(colorType, rgbColor, iccColor, ec); in setPaint()
DSVGPaint.h86 …void setPaint(unsigned short paintType, const String& uri, const String& rgbColor, const String& i…
DSVGPaint.idl44 …id setPaint(in unsigned short paintType, in DOMString uri, in DOMString rgbColor, in DOMString icc…
/external/webkit/Source/WebCore/css/
DRGBColor.h38 static PassRefPtr<RGBColor> create(unsigned rgbColor);
48 RGBColor(unsigned rgbColor) in RGBColor() argument
49 : m_rgbColor(rgbColor) in RGBColor()
DRGBColor.cpp32 PassRefPtr<RGBColor> RGBColor::create(unsigned rgbColor) in create() argument
34 return adoptRef(new RGBColor(rgbColor)); in create()
DCSSPrimitiveValue.cpp755 RGBA32 rgbColor = m_value.rgbcolor; in cssText() local
757 Color::parseHexColor(m_value.string, rgbColor); in cssText()
758 Color color(rgbColor); in cssText()
/external/webkit/Source/WebCore/platform/mac/
DHTMLConverter.mm459 NSColor *rgbColor = nil;
460 …enericRGBColorSpace]] || [colorSpace isEqual:[NSColorSpace deviceRGBColorSpace]]) rgbColor = color;
461 if (!rgbColor) rgbColor = [color colorUsingColorSpaceName:NSDeviceRGBColorSpace];
462 if (rgbColor) {
464 [rgbColor getRed:&red green:&green blue:&blue alpha:&alpha];
/external/webkit/Source/WebCore/accessibility/mac/
DAccessibilityObjectWrapper.mm360 NSColor* rgbColor = [nsColor colorUsingColorSpaceName:NSDeviceRGBColorSpace];
361 if (rgbColor == nil)
362 rgbColor = [NSColor blackColor];
364 [rgbColor getRed:&components[0] green:&components[1] blue:&components[2] alpha:&components[3]];
/external/webkit/Source/WebKit/mac/WebView/
DWebHTMLView.mm4283 NSColor *rgbColor = [color colorUsingColorSpaceName:NSDeviceRGBColorSpace];
4284 // FIXME: If color is non-nil and rgbColor is nil, that means we got some kind
4287 if (rgbColor == nil)
4289 float r = [rgbColor redComponent];
4290 float g = [rgbColor greenComponent];
4291 float b = [rgbColor blueComponent];
4292 float a = [rgbColor alphaComponent];
/external/webkit/Source/WebCore/
DChangeLog-2010-01-2971834 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):
DChangeLog-2005-12-195326 (SVGColorImpl::rgbColor):
DChangeLog-2006-12-3151514 (WebCore::SVGColor::rgbColor):