HomeSort by relevance Sort by last modified time
    Searched refs:WindRule (Results 1 - 25 of 36) sorted by null

1 2

  /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/
PlatformGraphicsContextRecording.h 86 virtual void clipPath(const Path& pathToClip, WindRule clipRule);
108 virtual void fillPath(const Path& pathToFill, WindRule fillRule);
PlatformGraphicsContextSkia.h 70 virtual void clipPath(const Path& pathToClip, WindRule clipRule);
92 virtual void fillPath(const Path& pathToFill, WindRule fillRule);
PlatformGraphicsContext.h 100 virtual void clipPath(const Path& pathToClip, WindRule clipRule) = 0;
122 virtual void fillPath(const Path& pathToFill, WindRule fillRule) = 0;
GraphicsOperation.h 500 void setWindRule(WindRule rule) { m_windRule = rule; m_hasWindRule = true; }
515 WindRule m_windRule;
648 FillPath(const Path& pathToFill, WindRule fillRule)
656 WindRule m_fillRule;
PlatformGraphicsContextRecording.cpp 239 void PlatformGraphicsContextRecording::clipPath(const Path& pathToClip, WindRule clipRule)
329 void PlatformGraphicsContextRecording::fillPath(const Path& pathToFill, WindRule fillRule)
PlatformGraphicsContextSkia.cpp 207 void PlatformGraphicsContextSkia::clipPath(const Path& pathToClip, WindRule clipRule)
477 void PlatformGraphicsContextSkia::fillPath(const Path& pathToFill, WindRule fillRule)
GraphicsContextAndroid.cpp 291 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 91 bool Path::contains(const FloatPoint& point, WindRule rule) const

Completed in 723 milliseconds

1 2