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/core/platform/graphics/
WindRule.h 33 enum WindRule {
Path.h 33 #include "core/platform/graphics/WindRule.h"
77 bool contains(const FloatPoint&, WindRule = RULE_NONZERO) const;
94 WindRule windRule() const;
95 void setWindRule(const WindRule);
FloatPolygon.h 36 #include "core/platform/graphics/WindRule.h"
52 FloatPolygon(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule);
57 WindRule fillRule() const { return m_fillRule; }
72 WindRule m_fillRule;
GraphicsContextState.h 114 WindRule m_fillRule;
GraphicsContext.h 118 WindRule fillRule() const { return m_state->m_fillRule; }
119 void setFillRule(WindRule fillRule) { m_state->m_fillRule = fillRule; }
278 void clipPath(const Path&, WindRule = RULE_EVENODD);
325 void canvasClip(const Path&, WindRule = RULE_EVENODD);
Path.cpp 70 bool Path::contains(const FloatPoint& point, WindRule rule) const
235 WindRule Path::windRule() const
242 void Path::setWindRule(const WindRule rule)
FloatPolygon.cpp 82 FloatPolygon::FloatPolygon(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule)
GraphicsContext.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGRect.h 49 virtual bool shapeDependentFillContains(const FloatPoint&, const WindRule) const;
RenderSVGEllipse.h 47 virtual bool shapeDependentFillContains(const FloatPoint&, const WindRule) const;
RenderSVGShape.h 68 virtual bool shapeDependentFillContains(const FloatPoint&, const WindRule) const;
82 bool fillContains(const FloatPoint&, bool requiresFill = true, const WindRule fillRule = RULE_NONZERO);
RenderSVGRect.cpp 121 bool RenderSVGRect::shapeDependentFillContains(const FloatPoint& point, const WindRule fillRule) const
RenderSVGShape.cpp 111 bool RenderSVGShape::shapeDependentFillContains(const FloatPoint& point, const WindRule fillRule) const
116 bool RenderSVGShape::fillContains(const FloatPoint& point, bool requiresFill, const WindRule fillRule)
325 WindRule fillRule = svgStyle->fillRule();
RenderSVGEllipse.cpp 143 bool RenderSVGEllipse::shapeDependentFillContains(const FloatPoint& point, const WindRule fillRule) const
RenderSVGResourceClipper.cpp 89 WindRule clipRule = RULE_NONZERO;
239 WindRule newClipRule = style->svgStyle()->clipRule();
SVGRenderTreeAsText.cpp 151 static TextStream& operator<<(TextStream& ts, const WindRule rule)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BasicShapes.h 34 #include "core/platform/graphics/WindRule.h"
59 virtual WindRule windRule() const { return RULE_NONZERO; }
167 void setWindRule(WindRule windRule) { m_windRule = windRule; }
173 virtual WindRule windRule() const { return m_windRule; }
181 WindRule m_windRule;
SVGRenderStyle.h 63 static WindRule initialClipRule() { return RULE_NONZERO; }
67 static WindRule initialFillRule() { return RULE_NONZERO; }
132 void setClipRule(WindRule val) { svg_inherited_flags._clipRule = val; }
136 void setFillRule(WindRule val) { svg_inherited_flags._fillRule = val; }
308 WindRule clipRule() const { return (WindRule) svg_inherited_flags._clipRule; }
312 WindRule fillRule() const { return (WindRule) svg_inherited_flags._fillRule; }
389 unsigned _clipRule : 1; // WindRule
390 unsigned _fillRule : 1; // WindRule
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
ClipPathOperation.h 104 WindRule windRule() const { return m_shape->windRule(); }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
PolygonShape.h 86 PolygonShape(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule)
Shape.cpp 35 #include "core/platform/graphics/WindRule.h"
62 static PassOwnPtr<Shape> createPolygonShape(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule)
167 shape = createPolygonShape(vertices.release(), polygon->windRule());
PolygonShape.cpp 139 static inline PassOwnPtr<FloatPolygon> computeShapePaddingBounds(const FloatPolygon& polygon, float padding, WindRule fillRule)
160 static inline PassOwnPtr<FloatPolygon> computeShapeMarginBounds(const FloatPolygon& polygon, float margin, WindRule fillRule)
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSBasicShapes.h 34 #include "core/platform/graphics/WindRule.h"
208 void setWindRule(WindRule w) { m_windRule = w; }
209 WindRule windRule() const { return m_windRule; }
224 WindRule m_windRule;
CSSBasicShapes.cpp 183 static String buildPolygonString(const WindRule& windRule, const Vector<String>& points)
203 if (windRule == RULE_EVENODD)
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp 863 static bool parseWinding(const String& windingRuleString, WindRule& windRule)
866 windRule = RULE_NONZERO;
868 windRule = RULE_EVENODD;
889 WindRule windRule = c->fillRule();
890 WindRule newWindRule = RULE_NONZERO;
907 c->setFillRule(windRule);
941 WindRule newWindRule = RULE_NONZERO;
963 WindRule windRule = RULE_NONZERO
    [all...]

Completed in 1082 milliseconds

1 2