OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:paintType
(Results
1 - 7
of
7
) sorted by null
/external/webkit/Source/WebCore/rendering/svg/
RenderSVGResource.cpp
57
SVGPaint::SVGPaintType
paintType
= paint->
paintType
();
58
if (
paintType
== SVGPaint::SVG_PAINTTYPE_NONE)
62
if (
paintType
== SVGPaint::SVG_PAINTTYPE_RGBCOLOR
63
||
paintType
== SVGPaint::SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR
64
||
paintType
== SVGPaint::SVG_PAINTTYPE_URI_RGBCOLOR
65
||
paintType
== SVGPaint::SVG_PAINTTYPE_URI_RGBCOLOR_ICCCOLOR)
67
else if (
paintType
== SVGPaint::SVG_PAINTTYPE_CURRENTCOLOR ||
paintType
== SVGPaint::SVG_PAINTTYPE_URI_CURRENTCOLOR)
76
if (visitedPaint->
paintType
() < SVGPaint::SVG_PAINTTYPE_URI_NONE && visitedPaint->paintType() != SVGPaint::SVG_PAINTTYPE_CURRE (…)
[
all
...]
SVGResources.cpp
159
SVGPaint::SVGPaintType
paintType
= paint->
paintType
();
160
if (
paintType
!= SVGPaint::SVG_PAINTTYPE_URI &&
paintType
!= SVGPaint::SVG_PAINTTYPE_URI_RGBCOLOR)
/external/webkit/Source/WebCore/svg/
SVGPaint.cpp
33
static inline SVGColor::SVGColorType colorTypeForPaintType(const SVGPaint::SVGPaintType&
paintType
)
35
switch (
paintType
) {
56
SVGPaint::SVGPaint(const SVGPaintType&
paintType
, String uri)
57
: SVGColor(colorTypeForPaintType(
paintType
))
58
, m_paintType(
paintType
)
65
// Spec: Sets the
paintType
to SVG_PAINTTYPE_URI_NONE and sets uri to the specified value.
85
void SVGPaint::setPaint(unsigned short
paintType
, const String& uri, const String& rgbColor, const String& iccColor, ExceptionCode& ec)
87
if ((
paintType
> SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR &&
paintType
< SVG_PAINTTYPE_NONE) ||
paintType
> SVG_PAINTTYPE_URI)
[
all
...]
SVGPaint.idl
40
readonly attribute unsigned short
paintType
;
44
[StrictTypeChecking, RequiresAllArguments=Raise] void setPaint(in unsigned short
paintType
, in DOMString uri, in DOMString rgbColor, in DOMString iccColor)
SVGPaint.h
82
const SVGPaintType&
paintType
() const { return m_paintType; }
86
void setPaint(unsigned short
paintType
, const String& uri, const String& rgbColor, const String& iccColor, ExceptionCode&);
/external/webkit/Source/WebCore/rendering/style/
SVGRenderStyleDefs.cpp
59
if (paint->
paintType
() != other.paint->
paintType
())
62
if (paint->
paintType
() == SVGPaint::SVG_PAINTTYPE_URI)
65
if (paint->
paintType
() == SVGPaint::SVG_PAINTTYPE_RGBCOLOR)
SVGRenderStyle.h
323
bool hasStroke() const { return strokePaint()->
paintType
() != SVGPaint::SVG_PAINTTYPE_NONE; }
324
bool hasFill() const { return fillPaint()->
paintType
() != SVGPaint::SVG_PAINTTYPE_NONE; }
Completed in 2240 milliseconds