OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cssValueId
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
TextLinkColors.cpp
60
static Color colorForCSSValue(
CSSValueID
cssValueId
)
63
CSSValueID
cssValueId
;
90
for (const ColorValue* col = colorValues; col->
cssValueId
; ++col) {
91
if (col->
cssValueId
==
cssValueId
)
94
return RenderTheme::theme().systemColor(
cssValueId
);
102
CSSValueID
valueID = value->getValueID();
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderThemeChromiumAndroid.cpp
61
Color RenderThemeChromiumAndroid::systemColor(
CSSValueID
cssValueId
) const
63
if (isRunningLayoutTest() &&
cssValueId
== CSSValueButtonface) {
68
return RenderTheme::systemColor(
cssValueId
);
RenderThemeChromiumWin.cpp
221
static int cssValueIdToSysColorIndex(int
cssValueId
)
223
switch (
cssValueId
) {
256
Color RenderThemeChromiumWin::systemColor(
CSSValueID
cssValueId
) const
258
int sysColorIndex = cssValueIdToSysColorIndex(
cssValueId
);
260
return RenderTheme::systemColor(
cssValueId
);
RenderThemeChromiumDefault.cpp
113
Color RenderThemeChromiumDefault::systemColor(
CSSValueID
cssValueId
) const
118
if (
cssValueId
== CSSValueButtonface) {
123
if (
cssValueId
== CSSValueMenu)
125
return RenderTheme::systemColor(
cssValueId
);
RenderThemeChromiumMac.mm
253
void RenderThemeChromiumMac::systemFont(
CSSValueID
cssValueId
, FontDescription& fontDescription) const
265
switch (
cssValueId
) {
388
Color RenderThemeChromiumMac::systemColor(
CSSValueID
cssValueId
) const
391
HashMap<int, RGBA32>::iterator it = m_systemColorCache.find(
cssValueId
);
397
switch (
cssValueId
) {
498
color = RenderTheme::systemColor(
cssValueId
);
501
m_systemColorCache.set(
cssValueId
, color.rgb());
[
all
...]
RenderTheme.cpp
[
all
...]
Completed in 63 milliseconds