createColorValue  645 Source/core/css/CSSComputedStyleDeclaration.cpp     return cssValuePool().createColorValue(color.resolve(style.color()).rgb());
createColorValue 1605 Source/core/css/CSSComputedStyleDeclaration.cpp             return m_allowVisitedStyle ? cssValuePool().createColorValue(style->visitedDependentColor(CSSPropertyBackgroundColor).rgb()) : currentColorOrValidColor(*style, style->backgroundColor());
createColorValue 1766 Source/core/css/CSSComputedStyleDeclaration.cpp             return m_allowVisitedStyle ? cssValuePool().createColorValue(style->visitedDependentColor(CSSPropertyBorderTopColor).rgb()) : currentColorOrValidColor(*style, style->borderTopColor());
createColorValue 1768 Source/core/css/CSSComputedStyleDeclaration.cpp             return m_allowVisitedStyle ? cssValuePool().createColorValue(style->visitedDependentColor(CSSPropertyBorderRightColor).rgb()) : currentColorOrValidColor(*style, style->borderRightColor());
createColorValue 1770 Source/core/css/CSSComputedStyleDeclaration.cpp             return m_allowVisitedStyle ? cssValuePool().createColorValue(style->visitedDependentColor(CSSPropertyBorderBottomColor).rgb()) : currentColorOrValidColor(*style, style->borderBottomColor());
createColorValue 1772 Source/core/css/CSSComputedStyleDeclaration.cpp             return m_allowVisitedStyle ? cssValuePool().createColorValue(style->visitedDependentColor(CSSPropertyBorderLeftColor).rgb()) : currentColorOrValidColor(*style, style->borderLeftColor());
createColorValue 1821 Source/core/css/CSSComputedStyleDeclaration.cpp             return cssValuePool().createColorValue(m_allowVisitedStyle ? style->visitedDependentColor(CSSPropertyColor).rgb() : style->color().rgb());
createColorValue 1837 Source/core/css/CSSComputedStyleDeclaration.cpp             return m_allowVisitedStyle ? cssValuePool().createColorValue(style->visitedDependentColor(CSSPropertyOutlineColor).rgb()) : currentColorOrValidColor(*style, style->columnRuleColor());
createColorValue 2118 Source/core/css/CSSComputedStyleDeclaration.cpp             return m_allowVisitedStyle ? cssValuePool().createColorValue(style->visitedDependentColor(CSSPropertyOutlineColor).rgb()) : currentColorOrValidColor(*style, style->outlineColor());
createColorValue   52 Source/core/css/CSSValuePool.h     PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createColorValue(unsigned rgbValue);
createColorValue  261 Source/core/css/parser/BisonCSSParser-in.cpp     RefPtrWillBeRawPtr<CSSValue> value = cssValuePool().createColorValue(color);
createColorValue 5337 Source/core/css/parser/CSSPropertyParser.cpp     return cssValuePool().createColorValue(c);
createColorValue 8260 Source/core/css/parser/CSSPropertyParser.cpp             parsedValue = cssValuePool().createColorValue(RenderTheme::theme().systemColor(id).rgb());
createColorValue 8265 Source/core/css/parser/CSSPropertyParser.cpp             parsedValue = cssValuePool().createColorValue(styleColor.color().rgb());
createColorValue  907 Source/core/html/HTMLElement.cpp     style->setProperty(propertyID, cssValuePool().createColorValue(parsedColor.rgb()));
createColorValue   82 Source/core/html/HTMLHRElement.cpp             RefPtrWillBeRawPtr<CSSPrimitiveValue> darkGrayValue = cssValuePool().createColorValue(Color::darkGray);