Searched refs:cssValueId (Results 1 - 15 of 15) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/
H A DRenderThemeBlackBerry.h44 virtual void systemFont(int cssValueId, FontDescription&) const;
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderThemeWinCE.h66 virtual Color systemColor(int cssValueId) const;
H A DRenderThemeMac.h64 virtual void systemFont(int cssValueId, FontDescription&) const;
97 virtual Color systemColor(int cssValueId) const;
H A DRenderThemeWinCE.cpp287 static int cssValueIdToSysColorIndex(int cssValueId) argument
289 switch (cssValueId) {
322 Color RenderThemeWinCE::systemColor(int cssValueId) const
324 int sysColorIndex = cssValueIdToSysColorIndex(cssValueId);
326 return RenderTheme::systemColor(cssValueId);
H A DRenderTheme.h169 virtual void systemFont(int cssValueId, FontDescription&) const = 0;
170 virtual Color systemColor(int cssValueId) const;
H A DRenderThemeWin.h67 virtual Color systemColor(int cssValueId) const;
H A DRenderThemeWin.cpp1037 static int cssValueIdToSysColorIndex(int cssValueId) argument
1039 switch (cssValueId) {
1072 Color RenderThemeWin::systemColor(int cssValueId) const
1074 int sysColorIndex = cssValueIdToSysColorIndex(cssValueId);
1076 return RenderTheme::systemColor(cssValueId);
H A DRenderThemeMac.mm601 void RenderThemeMac::systemFont(int cssValueId, FontDescription& fontDescription) const
613 switch (cssValueId) {
736 Color RenderThemeMac::systemColor(int cssValueId) const
739 HashMap<int, RGBA32>::iterator it = m_systemColorCache.find(cssValueId);
745 switch (cssValueId) {
844 color = RenderTheme::systemColor(cssValueId);
847 m_systemColorCache.set(cssValueId, color.rgb());
H A DRenderTheme.cpp1130 Color RenderTheme::systemColor(int cssValueId) const
1132 switch (cssValueId) {
/macosx-10.9.5/WebCore-7537.78.1/platform/gtk/
H A DRenderThemeGtk.h83 virtual Color systemColor(int cssValueId) const;
H A DRenderThemeGtk2.cpp722 Color RenderThemeGtk::systemColor(int cssValueId) const
724 switch (cssValueId) {
730 return RenderTheme::systemColor(cssValueId);
H A DRenderThemeGtk3.cpp984 Color RenderThemeGtk::systemColor(int cssValueId) const
988 switch (cssValueId) {
996 return RenderTheme::systemColor(cssValueId);
/macosx-10.9.5/WebCore-7537.78.1/platform/qt/
H A DRenderThemeQt.h80 virtual Color systemColor(int cssValueId) const;
H A DRenderThemeQt.cpp264 Color RenderThemeQt::systemColor(int cssValueId) const
267 switch (cssValueId) {
273 return RenderTheme::systemColor(cssValueId);
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DStyleResolver.cpp3394 static Color colorForCSSValue(int cssValueId) argument
3397 int cssValueId; member in struct:WebCore::ColorValue
3424 for (const ColorValue* col = colorValues; col->cssValueId; ++col) {
3425 if (col->cssValueId == cssValueId)
3428 return RenderTheme::defaultTheme()->systemColor(cssValueId);

Completed in 222 milliseconds