Home
last modified time | relevance | path

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

/external/webkit/WebCore/css/
DCSSPrimitiveValue.cpp65 PassRefPtr<CSSPrimitiveValue> CSSPrimitiveValue::createColor(unsigned rgbValue) in createColor() argument
70 if (rgbValue == Color::transparent) { in createColor()
74 if (rgbValue == Color::white) { in createColor()
78 RefPtr<CSSPrimitiveValue> primitiveValue = colorValueCache->get(rgbValue); in createColor()
81 primitiveValue = adoptRef(new CSSPrimitiveValue(rgbValue)); in createColor()
86 colorValueCache->add(rgbValue, primitiveValue); in createColor()
DCSSPrimitiveValue.h92 static PassRefPtr<CSSPrimitiveValue> createColor(unsigned rgbValue);