OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:svgPaint
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableSVGPaint.cpp
38
const AnimatableSVGPaint*
svgPaint
= toAnimatableSVGPaint(value);
39
if (paintType() ==
SVGPaint
::SVG_PAINTTYPE_RGBCOLOR &&
svgPaint
->paintType() ==
SVGPaint
::SVG_PAINTTYPE_RGBCOLOR) {
41
return AnimatableSVGPaint::create(
SVGPaint
::SVG_PAINTTYPE_RGBCOLOR, m_color.interpolateTo(
svgPaint
->m_color, fraction), String());
48
const AnimatableSVGPaint*
svgPaint
= toAnimatableSVGPaint(value);
49
if (paintType() !=
SVGPaint
::SVG_PAINTTYPE_RGBCOLOR ||
svgPaint
->paintType() !=
SVGPaint
::SVG_PAINTTYPE_RGBCOLOR)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
AnimatedStyleBuilder.cpp
331
const AnimatableSVGPaint*
svgPaint
= toAnimatableSVGPaint(value);
332
style->accessSVGStyle()->setFillPaint(
svgPaint
->paintType(),
svgPaint
->color(),
svgPaint
->uri());
459
const AnimatableSVGPaint*
svgPaint
= toAnimatableSVGPaint(value);
460
style->accessSVGStyle()->setStrokePaint(
svgPaint
->paintType(),
svgPaint
->color(),
svgPaint
->uri());
StyleBuilderCustom.cpp
81
#include "core/svg/
SVGPaint
.h"
[
all
...]
Completed in 54 milliseconds