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

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
WindRule.h 33 enum WindRule {
GraphicsContextState.h 109 WindRule fillRule() const { return m_fillRule; }
110 void setFillRule(WindRule rule) { m_fillRule = rule; }
167 WindRule m_fillRule;
Path.h 34 #include "platform/graphics/WindRule.h"
79 bool contains(const FloatPoint&, WindRule = RULE_NONZERO) const;
115 WindRule windRule() const;
116 void setWindRule(const WindRule);
GraphicsContext.h 143 WindRule fillRule() const { return immutableState()->fillRule(); }
144 void setFillRule(WindRule fillRule) { mutableState()->setFillRule(fillRule); }
313 void clipPath(const Path&, WindRule = RULE_EVENODD);
369 void canvasClip(const Path&, WindRule = RULE_EVENODD);
Path.cpp 69 bool Path::contains(const FloatPoint& point, WindRule rule) const
271 WindRule Path::windRule() const
278 void Path::setWindRule(const WindRule rule)
GraphicsContext.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGEllipse.h 47 virtual bool shapeDependentFillContains(const FloatPoint&, const WindRule) const OVERRIDE;
RenderSVGRect.h 49 virtual bool shapeDependentFillContains(const FloatPoint&, const WindRule) const OVERRIDE;
RenderSVGShape.h 67 virtual bool shapeDependentFillContains(const FloatPoint&, const WindRule) const;
81 bool fillContains(const FloatPoint&, bool requiresFill = true, const WindRule fillRule = RULE_NONZERO);
RenderSVGRect.cpp 125 bool RenderSVGRect::shapeDependentFillContains(const FloatPoint& point, const WindRule fillRule) const
RenderSVGShape.cpp 106 bool RenderSVGShape::shapeDependentFillContains(const FloatPoint& point, const WindRule fillRule) const
111 bool RenderSVGShape::fillContains(const FloatPoint& point, bool requiresFill, const WindRule fillRule)
328 WindRule fillRule = svgStyle->fillRule();
RenderSVGEllipse.cpp 143 bool RenderSVGEllipse::shapeDependentFillContains(const FloatPoint& point, const WindRule fillRule) const
RenderSVGResourceClipper.cpp 90 WindRule clipRule = RULE_NONZERO;
283 WindRule newClipRule = style->svgStyle()->clipRule();
SVGRenderTreeAsText.cpp 143 static TextStream& operator<<(TextStream& ts, const WindRule rule)
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatPolygon.h 36 #include "platform/graphics/WindRule.h"
52 FloatPolygon(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule);
57 WindRule fillRule() const { return m_fillRule; }
75 WindRule m_fillRule;
FloatPolygon.cpp 82 FloatPolygon::FloatPolygon(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule)
FloatPolygonTest.cpp 40 FloatPolygonTestValue(const float* coordinates, unsigned coordinatesLength, WindRule fillRule)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
PolygonShape.h 63 PolygonShape(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule)
Shape.cpp 44 #include "platform/graphics/WindRule.h"
68 static PassOwnPtr<Shape> createPolygonShape(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule)
142 shape = createPolygonShape(vertices.release(), polygon->windRule());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BasicShapes.h 36 #include "platform/graphics/WindRule.h"
62 virtual WindRule windRule() const { return RULE_NONZERO; }
227 void setWindRule(WindRule windRule) { m_windRule = windRule; }
234 virtual WindRule windRule() const OVERRIDE { return m_windRule; }
242 WindRule m_windRule;
SVGRenderStyle.h 60 static WindRule initialClipRule() { return RULE_NONZERO; }
64 static WindRule initialFillRule() { return RULE_NONZERO; }
123 void setClipRule(WindRule val) { svg_inherited_flags._clipRule = val; }
127 void setFillRule(WindRule val) { svg_inherited_flags._fillRule = val; }
294 WindRule clipRule() const { return (WindRule) svg_inherited_flags._clipRule; }
298 WindRule fillRule() const { return (WindRule) svg_inherited_flags._fillRule; }
377 unsigned _clipRule : 1; // WindRule
378 unsigned _fillRule : 1; // WindRule
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
ClipPathOperation.h 103 WindRule windRule() const { return m_shape->windRule(); }
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSBasicShapes.h 34 #include "platform/graphics/WindRule.h"
134 void setWindRule(WindRule w) { m_windRule = w; }
135 WindRule windRule() const { return m_windRule; }
150 WindRule m_windRule;
CSSBasicShapes.cpp 230 static String buildPolygonString(const WindRule& windRule, const Vector<String>& points, const String& box)
252 if (windRule == RULE_EVENODD)
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp 971 static WindRule parseWinding(const String& windingRuleString)
1005 WindRule windRule = c->fillRule();
1023 c->setFillRule(windRule);
    [all...]

Completed in 367 milliseconds

1 2