Home
last modified time | relevance | path

Searched refs:rgbValue (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/css/
DCSSPrimitiveValueCache.cpp57 PassRefPtr<CSSPrimitiveValue> CSSPrimitiveValueCache::createColorValue(unsigned rgbValue) in createColorValue() argument
60 if (rgbValue == Color::transparent) in createColorValue()
62 if (rgbValue == Color::white) in createColorValue()
65 if (rgbValue == Color::black) in createColorValue()
74 pair<ColorValueCache::iterator, bool> entry = m_colorValueCache.add(rgbValue, dummyValue); in createColorValue()
76 entry.first->second = CSSPrimitiveValue::createColor(rgbValue); in createColorValue()
DCSSPrimitiveValue.h114 …RefPtr<CSSPrimitiveValue> createColor(unsigned rgbValue) { return adoptRef(new CSSPrimitiveValue(r… in createColor() argument
213 static PassRefPtr<CSSPrimitiveValue> createUncachedColor(unsigned rgbValue);
DCSSPrimitiveValueCache.h44 PassRefPtr<CSSPrimitiveValue> createColorValue(unsigned rgbValue);