OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:collectGradientAttributes
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceLinearGradient.cpp
40
bool RenderSVGResourceLinearGradient::
collectGradientAttributes
(SVGGradientElement* gradientElement)
43
return toSVGLinearGradientElement(gradientElement)->
collectGradientAttributes
(m_attributes);
RenderSVGResourceLinearGradient.h
43
virtual bool
collectGradientAttributes
(SVGGradientElement*);
RenderSVGResourceRadialGradient.h
43
virtual bool
collectGradientAttributes
(SVGGradientElement*);
RenderSVGResourceRadialGradient.cpp
41
bool RenderSVGResourceRadialGradient::
collectGradientAttributes
(SVGGradientElement* gradientElement)
44
return toSVGRadialGradientElement(gradientElement)->
collectGradientAttributes
(m_attributes);
RenderSVGResourceGradient.h
59
virtual bool
collectGradientAttributes
(SVGGradientElement*) = 0;
RenderSVGResourceGradient.cpp
63
// Otherwhise the call to
collectGradientAttributes
() in createTileImage(), may cause the SVG DOM property
72
if (!
collectGradientAttributes
(gradientElement))
SVGRenderTreeAsText.cpp
531
toSVGLinearGradientElement(gradient->element())->
collectGradientAttributes
(attributes);
541
toSVGRadialGradientElement(gradient->element())->
collectGradientAttributes
(attributes);
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGLinearGradientElement.h
36
bool
collectGradientAttributes
(LinearGradientAttributes&);
SVGRadialGradientElement.h
36
bool
collectGradientAttributes
(RadialGradientAttributes&);
SVGLinearGradientElement.cpp
120
bool SVGLinearGradientElement::
collectGradientAttributes
(LinearGradientAttributes& attributes)
SVGRadialGradientElement.cpp
131
bool SVGRadialGradientElement::
collectGradientAttributes
(RadialGradientAttributes& attributes)
Completed in 55 milliseconds