HomeSort by relevance Sort by last modified time
    Searched refs:rgbcolor (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/css/
CSSPrimitiveValue.h 35 class RGBColor;
175 PassRefPtr<RGBColor> getRGBColorValue(ExceptionCode&) const;
176 RGBA32 getRGBA32Value() const { return m_type != CSS_RGBCOLOR ? 0 : m_value.rgbcolor; }
236 unsigned rgbcolor; member in union:WebCore::CSSPrimitiveValue::__anon13272
CSSPrimitiveValue.cpp 34 #include "RGBColor.h"
148 m_value.rgbcolor = color;
564 PassRefPtr<RGBColor> CSSPrimitiveValue::getRGBColorValue(ExceptionCode& ec) const
573 return RGBColor::create(m_value.rgbcolor);
754 RGBA32 rgbColor = m_value.rgbcolor;
756 Color::parseHexColor(m_value.string, rgbColor);
757 Color color(rgbColor);

Completed in 38 milliseconds