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

1 2

  /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 68 virtual bool shapeDependentFillContains(const FloatPoint&, const WindRule) const;
82 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 105 bool RenderSVGShape::shapeDependentFillContains(const FloatPoint& point, const WindRule fillRule) const
110 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 91 WindRule clipRule = RULE_NONZERO;
281 WindRule newClipRule = style->svgStyle().clipRule();
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
HitRegion.h 29 WindRule fillRule;
49 WindRule fillRule() const { return m_fillRule; }
59 WindRule m_fillRule;
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatPolygon.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/platform/graphics/
GraphicsContextState.h 105 WindRule fillRule() const { return m_fillRule; }
106 void setFillRule(WindRule rule) { m_fillRule = rule; }
163 WindRule m_fillRule;
Path.h 78 bool contains(const FloatPoint&, WindRule = RULE_NONZERO) const;
114 WindRule windRule() const;
115 void setWindRule(const WindRule);
GraphicsTypes.h 112 enum WindRule {
GraphicsContext.h 138 WindRule fillRule() const { return immutableState()->fillRule(); }
139 void setFillRule(WindRule fillRule) { mutableState()->setFillRule(fillRule); }
319 void clipPath(const Path&, WindRule = RULE_EVENODD);
325 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/shapes/
PolygonShape.h 63 PolygonShape(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule)
Shape.cpp 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 62 virtual WindRule windRule() const { return RULE_NONZERO; }
219 void setWindRule(WindRule windRule) { m_windRule = windRule; }
226 virtual WindRule windRule() const OVERRIDE { return m_windRule; }
234 WindRule m_windRule;
SVGRenderStyle.h 59 static WindRule initialClipRule() { return RULE_NONZERO; }
63 static WindRule initialFillRule() { return RULE_NONZERO; }
122 void setClipRule(WindRule val) { svg_inherited_flags._clipRule = val; }
126 void setFillRule(WindRule val) { svg_inherited_flags._fillRule = val; }
293 WindRule clipRule() const { return (WindRule) svg_inherited_flags._clipRule; }
297 WindRule fillRule() const { return (WindRule) svg_inherited_flags._fillRule; }
376 unsigned _clipRule : 1; // WindRule
377 unsigned _fillRule : 1; // WindRule
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
SkiaUtils.h 85 inline SkPath::FillType WebCoreWindRuleToSkFillType(WindRule rule)
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSBasicShapes.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/rendering/
ClipPathOperation.h 104 WindRule windRule() const { return m_shape->windRule(); }

Completed in 392 milliseconds

1 2