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

/external/webkit/Source/WebCore/rendering/
H A DRenderThemeChromiumWin.h62 virtual Color systemColor(int cssValueId) const;
H A DRenderThemeChromiumLinux.cpp86 Color RenderThemeChromiumLinux::systemColor(int cssValueId) const
90 if (cssValueId == CSSValueButtonface)
92 return RenderTheme::systemColor(cssValueId);
H A DRenderThemeWinCE.h66 virtual Color systemColor(int cssValueId) const;
H A DRenderTheme.h157 virtual void systemFont(int cssValueId, FontDescription&) const = 0;
158 virtual Color systemColor(int cssValueId) const;
H A DRenderThemeMac.h70 virtual void systemFont(int cssValueId, FontDescription&) const;
96 virtual Color systemColor(int cssValueId) const;
H A DRenderThemeChromiumWin.cpp355 static int cssValueIdToSysColorIndex(int cssValueId) argument
357 switch (cssValueId) {
390 Color RenderThemeChromiumWin::systemColor(int cssValueId) const
392 int sysColorIndex = cssValueIdToSysColorIndex(cssValueId);
394 return RenderTheme::systemColor(cssValueId);
H A DRenderThemeWinCE.cpp286 static int cssValueIdToSysColorIndex(int cssValueId) argument
288 switch (cssValueId) {
321 Color RenderThemeWinCE::systemColor(int cssValueId) const
323 int sysColorIndex = cssValueIdToSysColorIndex(cssValueId);
325 return RenderTheme::systemColor(cssValueId);
H A DRenderThemeWin.h67 virtual Color systemColor(int cssValueId) const;
H A DRenderThemeWin.cpp980 static int cssValueIdToSysColorIndex(int cssValueId) argument
982 switch (cssValueId) {
1015 Color RenderThemeWin::systemColor(int cssValueId) const
1017 int sysColorIndex = cssValueIdToSysColorIndex(cssValueId);
1019 return RenderTheme::systemColor(cssValueId);
H A 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());
H A DRenderTheme.cpp1023 Color RenderTheme::systemColor(int cssValueId) const
1025 switch (cssValueId) {
/external/webkit/Source/WebCore/platform/gtk/
H A DRenderThemeGtk.h84 virtual Color systemColor(int cssValueId) const;
H A DRenderThemeGtk2.cpp718 Color RenderThemeGtk::systemColor(int cssValueId) const
720 switch (cssValueId) {
726 return RenderTheme::systemColor(cssValueId);
H A DRenderThemeGtk3.cpp915 Color RenderThemeGtk::systemColor(int cssValueId) const
919 switch (cssValueId) {
927 return RenderTheme::systemColor(cssValueId);
/external/webkit/Source/WebCore/platform/qt/
H A DRenderThemeQt.h76 virtual Color systemColor(int cssValueId) const;
H A DRenderThemeQt.cpp433 Color RenderThemeQt::systemColor(int cssValueId) const
436 switch (cssValueId) {
442 return RenderTheme::systemColor(cssValueId);
/external/webkit/Source/WebCore/css/
H A DCSSStyleSelector.cpp7080 static Color colorForCSSValue(int cssValueId) argument
7083 int cssValueId; member in struct:WebCore::ColorValue
7110 for (const ColorValue* col = colorValues; col->cssValueId; ++col) {
7111 if (col->cssValueId == cssValueId)
7114 return RenderTheme::defaultTheme()->systemColor(cssValueId);

Completed in 114 milliseconds