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

1 2

  /external/chromium_org/third_party/skia/src/svg/
SkSVGPath.cpp 31 SkString& fillRule = parser.getPaintLast(SkSVGPaint::kFillRule);
32 if (fillRule.size() > 0)
33 parser._addAttribute("fillType", fillRule.equals("evenodd") ? "evenOdd" : "winding");
  /external/skia/src/svg/
SkSVGPath.cpp 31 SkString& fillRule = parser.getPaintLast(SkSVGPaint::kFillRule);
32 if (fillRule.size() > 0)
33 parser._addAttribute("fillType", fillRule.equals("evenodd") ? "evenOdd" : "winding");
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
HitRegion.h 29 WindRule fillRule;
49 WindRule fillRule() const { return m_fillRule; }
HitRegion.cpp 17 , m_fillRule(options.fillRule)
CanvasRenderingContext2D.cpp 1024 WindRule windRule = c->fillRule();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
PolygonShape.h 63 PolygonShape(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule)
65 , m_polygon(vertices, fillRule)
Shape.cpp 68 static PassOwnPtr<Shape> createPolygonShape(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule)
70 return adoptPtr(new PolygonShape(vertices, fillRule));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGRect.cpp 125 bool RenderSVGRect::shapeDependentFillContains(const FloatPoint& point, const WindRule fillRule) const
128 return RenderSVGShape::shapeDependentFillContains(point, fillRule);
RenderSVGShape.cpp 105 bool RenderSVGShape::shapeDependentFillContains(const FloatPoint& point, const WindRule fillRule) const
107 return path().contains(point, fillRule);
110 bool RenderSVGShape::fillContains(const FloatPoint& point, bool requiresFill, const WindRule fillRule)
119 return shapeDependentFillContains(point, fillRule);
328 WindRule fillRule = svgStyle.fillRule();
330 fillRule = svgStyle.clipRule();
333 || (hitRules.canHitFill && (svgStyle.hasFill() || !hitRules.requireFill) && fillContains(localPoint, hitRules.requireFill, fillRule)))
RenderSVGResourceSolidColor.cpp 63 context->setFillRule(svgStyle.fillRule());
RenderSVGEllipse.cpp 143 bool RenderSVGEllipse::shapeDependentFillContains(const FloatPoint& point, const WindRule fillRule) const
146 return RenderSVGShape::shapeDependentFillContains(point, fillRule);
RenderSVGShape.h 82 bool fillContains(const FloatPoint&, bool requiresFill = true, const WindRule fillRule = RULE_NONZERO);
RenderSVGResourceGradient.cpp 121 context->setFillRule(svgStyle.fillRule());
RenderSVGResourcePattern.cpp 157 context->setFillRule(svgStyle.fillRule());
SVGRenderTreeAsText.cpp 319 writeIfNotDefault(ts, "fill rule", svgStyle.fillRule(), RULE_NONZERO);
  /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; }
FloatPolygonTest.cpp 40 FloatPolygonTestValue(const float* coordinates, unsigned coordinatesLength, WindRule fillRule)
46 m_polygon = adoptPtr(new FloatPolygon(vertices.release(), fillRule));
92 EXPECT_EQ(RULE_NONZERO, triangle.fillRule());
173 * Tests FloatPolygon::contains() with a right triangle, and fillRule = nonzero.
188 EXPECT_EQ(RULE_NONZERO, triangle.fillRule());
200 * Tests FloatPolygon::contains() with a right triangle, and fillRule = evenodd;
215 EXPECT_EQ(RULE_EVENODD, triangle.fillRule());
FloatPolygon.cpp 82 FloatPolygon::FloatPolygon(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule)
84 , m_fillRule(fillRule)
199 return (fillRule() == RULE_NONZERO) ? containsNonZero(point) : containsEvenOdd(point);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsContextState.h 105 WindRule fillRule() const { return m_fillRule; }
GraphicsContext.h 138 WindRule fillRule() const { return immutableState()->fillRule(); }
139 void setFillRule(WindRule fillRule) { mutableState()->setFillRule(fillRule); }
GraphicsContext.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
SVGCSSComputedStyleDeclaration.cpp 141 return CSSPrimitiveValue::create(svgStyle.fillRule());
  /external/chromium_org/third_party/skia/include/device/xps/
SkXPSDevice.h 297 XPS_FILL_RULE fillRule);
  /external/skia/include/device/xps/
SkXPSDevice.h 283 XPS_FILL_RULE fillRule);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
SVGRenderStyle.h 297 WindRule fillRule() const { return (WindRule) svg_inherited_flags._fillRule; }

Completed in 876 milliseconds

1 2