Home
last modified time | relevance | path

Searched refs:WindRule (Results 1 – 25 of 28) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DPath.h78 bool contains(const FloatPoint&, WindRule = RULE_NONZERO) const;
95 WindRule windRule() const;
96 void setWindRule(const WindRule);
DWindRule.h33 enum WindRule { enum
DGraphicsContext.h120 WindRule fillRule() const { return m_state->m_fillRule; } in fillRule()
121 void setFillRule(WindRule fillRule) { m_state->m_fillRule = fillRule; } in setFillRule()
289 void clipPath(const Path&, WindRule = RULE_EVENODD);
341 void canvasClip(const Path&, WindRule = RULE_EVENODD);
DGraphicsContextState.h116 WindRule m_fillRule;
DPath.cpp70 bool Path::contains(const FloatPoint& point, WindRule rule) const in contains()
235 WindRule Path::windRule() const in windRule()
242 void Path::setWindRule(const WindRule rule) in setWindRule()
DGraphicsContext.cpp1483 void GraphicsContext::clipPath(const Path& pathToClip, WindRule clipRule) in clipPath()
1527 void GraphicsContext::canvasClip(const Path& pathToClip, WindRule clipRule) in canvasClip()
1676 WindRule oldFillRule = fillRule(); in fillRectWithRoundedHole()
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
DFloatPolygon.h52 FloatPolygon(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule);
57 WindRule fillRule() const { return m_fillRule; } in fillRule()
75 WindRule m_fillRule;
DFloatPolygon.cpp82 FloatPolygon::FloatPolygon(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule) in FloatPolygon()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DBasicShapes.h59 virtual WindRule windRule() const { return RULE_NONZERO; } in windRule()
167 void setWindRule(WindRule windRule) { m_windRule = windRule; } in setWindRule()
173 virtual WindRule windRule() const { return m_windRule; } in windRule()
181 WindRule m_windRule;
DSVGRenderStyle.h63 static WindRule initialClipRule() { return RULE_NONZERO; } in initialClipRule()
67 static WindRule initialFillRule() { return RULE_NONZERO; } in initialFillRule()
133 void setClipRule(WindRule val) { svg_inherited_flags._clipRule = val; } in setClipRule()
137 void setFillRule(WindRule val) { svg_inherited_flags._fillRule = val; } in setFillRule()
310 WindRule clipRule() const { return (WindRule) svg_inherited_flags._clipRule; } in clipRule()
314 WindRule fillRule() const { return (WindRule) svg_inherited_flags._fillRule; } in fillRule()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DRenderSVGShape.h71 virtual bool shapeDependentFillContains(const FloatPoint&, const WindRule) const;
85 …bool fillContains(const FloatPoint&, bool requiresFill = true, const WindRule fillRule = RULE_NONZ…
DRenderSVGEllipse.h47 virtual bool shapeDependentFillContains(const FloatPoint&, const WindRule) const;
DRenderSVGRect.h49 virtual bool shapeDependentFillContains(const FloatPoint&, const WindRule) const;
DRenderSVGShape.cpp112 bool RenderSVGShape::shapeDependentFillContains(const FloatPoint& point, const WindRule fillRule) c… in shapeDependentFillContains()
117 bool RenderSVGShape::fillContains(const FloatPoint& point, bool requiresFill, const WindRule fillRu… in fillContains()
338 WindRule fillRule = svgStyle->fillRule(); in nodeAtFloatPointInternal()
DRenderSVGRect.cpp121 bool RenderSVGRect::shapeDependentFillContains(const FloatPoint& point, const WindRule fillRule) co… in shapeDependentFillContains()
DRenderSVGResourceClipper.cpp89 WindRule clipRule = RULE_NONZERO; in tryPathOnlyClipping()
280 WindRule newClipRule = style->svgStyle()->clipRule(); in asDisplayList()
DRenderSVGEllipse.cpp141 bool RenderSVGEllipse::shapeDependentFillContains(const FloatPoint& point, const WindRule fillRule)… in shapeDependentFillContains()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSBasicShapes.h208 void setWindRule(WindRule w) { m_windRule = w; } in setWindRule()
209 WindRule windRule() const { return m_windRule; } in windRule()
224 WindRule m_windRule;
DCSSProperties.in259 clip-rule svg, type_name=WindRule
265 fill-rule svg, type_name=WindRule
DCSSBasicShapes.cpp183 static String buildPolygonString(const WindRule& windRule, const Vector<String>& points) in buildPolygonString()
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
DPolygonShape.h85 PolygonShape(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule) in PolygonShape()
DPolygonShape.cpp140 …atPolygon> computeShapePaddingBounds(const FloatPolygon& polygon, float padding, WindRule fillRule) in computeShapePaddingBounds()
161 …loatPolygon> computeShapeMarginBounds(const FloatPolygon& polygon, float margin, WindRule fillRule) in computeShapeMarginBounds()
DShape.cpp72 static PassOwnPtr<Shape> createPolygonShape(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fill… in createPolygonShape()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DClipPathOperation.h103 WindRule windRule() const { return m_shape->windRule(); } in windRule()
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DCanvasRenderingContext2D.cpp873 static bool parseWinding(const String& windingRuleString, WindRule& windRule) in parseWinding()
902 WindRule windRule = c->fillRule(); in fill()
903 WindRule newWindRule = RULE_NONZERO; in fill()
959 WindRule newWindRule = RULE_NONZERO; in clip()
981 WindRule windRule = RULE_NONZERO; in isPointInPath()

12