OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fallbackColor
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimatableValueFactory.cpp
218
Color
fallbackColor
= style.color();
224
fallbackColor
= Color::transparent;
231
resolvedColor =
fallbackColor
;
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGShape.cpp
122
Color
fallbackColor
;
123
if (requiresFill && !RenderSVGResource::fillPaintingResource(this, style(),
fallbackColor
))
134
Color
fallbackColor
;
135
if (requiresStroke && !RenderSVGResource::strokePaintingResource(this, style(),
fallbackColor
))
216
Color
fallbackColor
;
217
if (RenderSVGResource* fillPaintingResource = RenderSVGResource::fillPaintingResource(this, style,
fallbackColor
)) {
220
else if (
fallbackColor
.isValid()) {
222
fallbackResource->setColor(
fallbackColor
);
231
Color
fallbackColor
;
232
if (RenderSVGResource* strokePaintingResource = RenderSVGResource::strokePaintingResource(this, style,
fallbackColor
)) {
[
all
...]
SVGInlineTextBox.cpp
372
Color
fallbackColor
;
374
m_paintingResource = RenderSVGResource::fillPaintingResource(renderer, style,
fallbackColor
);
376
m_paintingResource = RenderSVGResource::strokePaintingResource(renderer, style,
fallbackColor
);
386
if (
fallbackColor
.isValid()) {
388
fallbackResource->setColor(
fallbackColor
);
SVGRenderTreeAsText.cpp
263
Color
fallbackColor
;
264
if (RenderSVGResource* strokePaintingResource = RenderSVGResource::strokePaintingResource(const_cast<RenderSVGShape*>(&shape), shape.style(),
fallbackColor
)) {
291
if (RenderSVGResource* fillPaintingResource = RenderSVGResource::fillPaintingResource(const_cast<RenderSVGShape*>(&shape), shape.style(),
fallbackColor
)) {
Completed in 32 milliseconds