HomeSort by relevance Sort by last modified time
    Searched refs:fillRule (Results 1 - 25 of 28) 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/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 106 bool RenderSVGShape::shapeDependentFillContains(const FloatPoint& point, const WindRule fillRule) const
108 return path().contains(point, fillRule);
111 bool RenderSVGShape::fillContains(const FloatPoint& point, bool requiresFill, const WindRule fillRule)
120 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 64 context->setFillRule(svgStyle ? svgStyle->fillRule() : RULE_NONZERO);
RenderSVGEllipse.cpp 143 bool RenderSVGEllipse::shapeDependentFillContains(const FloatPoint& point, const WindRule fillRule) const
146 return RenderSVGShape::shapeDependentFillContains(point, fillRule);
RenderSVGShape.h 81 bool fillContains(const FloatPoint&, bool requiresFill = true, const WindRule fillRule = RULE_NONZERO);
RenderSVGResourceGradient.cpp 122 context->setFillRule(svgStyle->fillRule());
RenderSVGResourcePattern.cpp 157 context->setFillRule(svgStyle->fillRule());
SVGRenderTreeAsText.cpp 318 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/
GraphicsContext.h 143 WindRule fillRule() const { return immutableState()->fillRule(); }
144 void setFillRule(WindRule fillRule) { mutableState()->setFillRule(fillRule); }
GraphicsContextState.h 109 WindRule fillRule() const { return m_fillRule; }
GraphicsContext.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
SVGCSSComputedStyleDeclaration.cpp 131 return CSSPrimitiveValue::create(svgStyle->fillRule());
  /external/chromium_org/third_party/skia/include/device/xps/
SkXPSDevice.h 283 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 298 WindRule fillRule() const { return (WindRule) svg_inherited_flags._fillRule; }
  /external/chromium_org/third_party/skia/src/device/xps/
SkXPSDevice.cpp     [all...]
  /external/skia/src/device/xps/
SkXPSDevice.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp 1005 WindRule windRule = c->fillRule();
    [all...]

Completed in 1366 milliseconds

1 2