/external/webkit/Source/WebCore/platform/graphics/ |
Path.h | 84 enum WindRule { 113 bool contains(const FloatPoint&, WindRule rule = RULE_NONZERO) const;
|
GraphicsContext.h | 210 WindRule fillRule; 251 WindRule fillRule() const; 252 void setFillRule(WindRule); 367 void clipPath(const Path&, WindRule);
|
GraphicsContext.cpp | 202 WindRule GraphicsContext::fillRule() const 207 void GraphicsContext::setFillRule(WindRule fillRule) 640 WindRule oldFillRule = fillRule();
|
/external/webkit/Source/WebCore/platform/graphics/android/context/ |
PlatformGraphicsContextSkia.h | 70 virtual bool clipPath(const Path& pathToClip, WindRule clipRule); 93 virtual void fillPath(const Path& pathToFill, WindRule fillRule);
|
GraphicsOperation.h | 264 void setWindRule(WindRule rule) { m_windRule = rule; m_hasWindRule = true; } 278 WindRule m_windRule; 453 FillPath(const Path& pathToFill, WindRule fillRule) 462 WindRule m_fillRule;
|
PlatformGraphicsContext.h | 102 virtual bool clipPath(const Path& pathToClip, WindRule clipRule) = 0; 125 virtual void fillPath(const Path& pathToFill, WindRule fillRule) = 0;
|
PlatformGraphicsContextRecording.h | 111 virtual bool clipPath(const Path& pathToClip, WindRule clipRule); 134 virtual void fillPath(const Path& pathToFill, WindRule fillRule);
|
PlatformGraphicsContextSkia.cpp | 209 bool PlatformGraphicsContextSkia::clipPath(const Path& pathToClip, WindRule clipRule) 479 void PlatformGraphicsContextSkia::fillPath(const Path& pathToFill, WindRule fillRule)
|
GraphicsContextAndroid.cpp | 294 void GraphicsContext::clipPath(const Path& pathToClip, WindRule clipRule)
|
/external/webkit/Source/WebCore/platform/graphics/openvg/ |
PainterOpenVG.h | 115 void drawPath(const Path&, VGbitfield paintModes = (VG_STROKE_PATH | VG_FILL_PATH), WindRule fillRule = RULE_NONZERO); 118 void clipPath(const Path&, PainterOpenVG::ClipOperation, WindRule clipRule = RULE_NONZERO);
|
GraphicsContextOpenVG.cpp | 197 void GraphicsContext::clipPath(const Path& path, WindRule clipRule)
|
PainterOpenVG.cpp | 79 static VGFillRule toVGFillRule(WindRule fillRule) 717 void PainterOpenVG::drawPath(const Path& path, VGbitfield specifiedPaintModes, WindRule fillRule) 788 void PainterOpenVG::clipPath(const Path& path, PainterOpenVG::ClipOperation maskOp, WindRule clipRule) [all...] |
/external/webkit/Source/WebCore/rendering/style/ |
SVGRenderStyle.h | 61 static WindRule initialClipRule() { return RULE_NONZERO; } 65 static WindRule initialFillRule() { return RULE_NONZERO; } 134 void setClipRule(WindRule val) { svg_inherited_flags._clipRule = val; } 138 void setFillRule(WindRule val) { svg_inherited_flags._fillRule = val; } 283 WindRule clipRule() const { return (WindRule) svg_inherited_flags._clipRule; } 287 WindRule fillRule() const { return (WindRule) svg_inherited_flags._fillRule; } 355 unsigned _clipRule : 1; // WindRule 356 unsigned _fillRule : 1; // WindRule [all...] |
/external/webkit/Source/WebCore/rendering/svg/ |
RenderSVGPath.h | 51 bool fillContains(const FloatPoint&, bool requiresFill = true, WindRule fillRule = RULE_NONZERO);
|
RenderSVGPath.cpp | 81 bool RenderSVGPath::fillContains(const FloatPoint& point, bool requiresFill, WindRule fillRule) 267 WindRule fillRule = svgStyle->fillRule();
|
RenderSVGResourceClipper.cpp | 112 WindRule clipRule = RULE_NONZERO; 236 WindRule newClipRule = style->svgStyle()->clipRule();
|
/external/webkit/Source/WebCore/platform/graphics/wx/ |
PathWx.cpp | 43 int getWxWindRuleForWindRule(WindRule rule) 78 bool Path::contains(const FloatPoint& point, const WindRule rule) const
|
/external/webkit/Source/WebCore/platform/graphics/haiku/ |
PathHaiku.cpp | 76 bool Path::contains(const FloatPoint& point, WindRule rule) const
|
/external/webkit/Source/WebCore/platform/graphics/wince/ |
PathWinCE.cpp | 56 bool Path::contains(const FloatPoint& point, WindRule rule) const
|
PlatformPathWinCE.h | 154 bool contains(const FloatPoint& point, WindRule rule) const;
|
/external/webkit/Source/WebCore/platform/graphics/cg/ |
PathCG.cpp | 125 bool Path::contains(const FloatPoint &point, WindRule rule) const
|
GraphicsContextCG.cpp | 540 static inline void fillPathWithFillRule(CGContextRef context, WindRule fillRule) 803 WindRule oldFillRule = fillRule(); 851 void GraphicsContext::clipPath(const Path& path, WindRule clipRule) [all...] |
/external/webkit/Source/WebCore/platform/graphics/skia/ |
PathSkia.cpp | 84 bool Path::contains(const FloatPoint& point, WindRule rule) const
|
/external/webkit/Source/WebCore/platform/graphics/android/ |
PathAndroid.cpp | 90 bool Path::contains(const FloatPoint& point, WindRule rule) const
|
/external/webkit/Source/WebCore/platform/graphics/cairo/ |
PathCairo.cpp | 297 bool Path::contains(const FloatPoint& point, WindRule rule) const
|