Home
last modified time | relevance | path

Searched refs:cssValueId (Results 1 – 17 of 17) sorted by relevance

/external/webkit/Source/WebCore/rendering/
DRenderThemeChromiumLinux.cpp86 Color RenderThemeChromiumLinux::systemColor(int cssValueId) const in systemColor()
90 if (cssValueId == CSSValueButtonface) in systemColor()
92 return RenderTheme::systemColor(cssValueId); in systemColor()
DRenderThemeChromiumWin.cpp355 static int cssValueIdToSysColorIndex(int cssValueId) in cssValueIdToSysColorIndex() argument
357 switch (cssValueId) { in cssValueIdToSysColorIndex()
390 Color RenderThemeChromiumWin::systemColor(int cssValueId) const in systemColor()
392 int sysColorIndex = cssValueIdToSysColorIndex(cssValueId); in systemColor()
394 return RenderTheme::systemColor(cssValueId); in systemColor()
DRenderThemeWinCE.cpp286 static int cssValueIdToSysColorIndex(int cssValueId) in cssValueIdToSysColorIndex() argument
288 switch (cssValueId) { in cssValueIdToSysColorIndex()
321 Color RenderThemeWinCE::systemColor(int cssValueId) const in systemColor()
323 int sysColorIndex = cssValueIdToSysColorIndex(cssValueId); in systemColor()
325 return RenderTheme::systemColor(cssValueId); in systemColor()
DRenderThemeMac.h70 virtual void systemFont(int cssValueId, FontDescription&) const;
96 virtual Color systemColor(int cssValueId) const;
DRenderThemeChromiumWin.h62 virtual Color systemColor(int cssValueId) const;
DRenderTheme.h157 virtual void systemFont(int cssValueId, FontDescription&) const = 0;
158 virtual Color systemColor(int cssValueId) const;
DRenderThemeWin.cpp980 static int cssValueIdToSysColorIndex(int cssValueId) in cssValueIdToSysColorIndex() argument
982 switch (cssValueId) { in cssValueIdToSysColorIndex()
1015 Color RenderThemeWin::systemColor(int cssValueId) const in systemColor()
1017 int sysColorIndex = cssValueIdToSysColorIndex(cssValueId); in systemColor()
1019 return RenderTheme::systemColor(cssValueId); in systemColor()
DRenderThemeWinCE.h66 virtual Color systemColor(int cssValueId) const;
DRenderThemeWin.h67 virtual Color systemColor(int cssValueId) const;
DRenderThemeMac.mm222 void RenderThemeMac::systemFont(int cssValueId, FontDescription& fontDescription) const
234 switch (cssValueId) {
357 Color RenderThemeMac::systemColor(int cssValueId) const
359 if (m_systemColorCache.contains(cssValueId))
360 return m_systemColorCache.get(cssValueId);
363 switch (cssValueId) {
462 color = RenderTheme::systemColor(cssValueId);
465 m_systemColorCache.set(cssValueId, color.rgb());
DRenderTheme.cpp1023 Color RenderTheme::systemColor(int cssValueId) const in systemColor()
1025 switch (cssValueId) { in systemColor()
/external/webkit/Source/WebCore/platform/gtk/
DRenderThemeGtk2.cpp718 Color RenderThemeGtk::systemColor(int cssValueId) const in systemColor()
720 switch (cssValueId) { in systemColor()
726 return RenderTheme::systemColor(cssValueId); in systemColor()
DRenderThemeGtk.h84 virtual Color systemColor(int cssValueId) const;
DRenderThemeGtk3.cpp915 Color RenderThemeGtk::systemColor(int cssValueId) const in systemColor()
919 switch (cssValueId) { in systemColor()
927 return RenderTheme::systemColor(cssValueId); in systemColor()
/external/webkit/Source/WebCore/platform/qt/
DRenderThemeQt.h76 virtual Color systemColor(int cssValueId) const;
DRenderThemeQt.cpp433 Color RenderThemeQt::systemColor(int cssValueId) const in systemColor()
436 switch (cssValueId) { in systemColor()
442 return RenderTheme::systemColor(cssValueId); in systemColor()
/external/webkit/Source/WebCore/css/
DCSSStyleSelector.cpp6957 static Color colorForCSSValue(int cssValueId) in colorForCSSValue() argument
6960 int cssValueId; in colorForCSSValue() member
6987 for (const ColorValue* col = colorValues; col->cssValueId; ++col) { in colorForCSSValue()
6988 if (col->cssValueId == cssValueId) in colorForCSSValue()
6991 return RenderTheme::defaultTheme()->systemColor(cssValueId); in colorForCSSValue()