/external/chromium_org/third_party/skia/src/svg/ |
D | SkSVGPath.cpp | 31 SkString& fillRule = parser.getPaintLast(SkSVGPaint::kFillRule); in DEFINE_SVG_INFO() local 32 if (fillRule.size() > 0) in DEFINE_SVG_INFO() 33 parser._addAttribute("fillType", fillRule.equals("evenodd") ? "evenOdd" : "winding"); in DEFINE_SVG_INFO()
|
/external/skia/src/svg/ |
D | SkSVGPath.cpp | 31 SkString& fillRule = parser.getPaintLast(SkSVGPaint::kFillRule); in DEFINE_SVG_INFO() local 32 if (fillRule.size() > 0) in DEFINE_SVG_INFO() 33 parser._addAttribute("fillType", fillRule.equals("evenodd") ? "evenOdd" : "winding"); in DEFINE_SVG_INFO()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
D | RenderSVGShape.cpp | 105 bool RenderSVGShape::shapeDependentFillContains(const FloatPoint& point, const WindRule fillRule) c… in shapeDependentFillContains() 107 return path().contains(point, fillRule); in shapeDependentFillContains() 110 …l RenderSVGShape::fillContains(const FloatPoint& point, bool requiresFill, const WindRule fillRule) in fillContains() argument 119 return shapeDependentFillContains(point, fillRule); in fillContains() 328 WindRule fillRule = svgStyle.fillRule(); in nodeAtFloatPointInternal() local 330 fillRule = svgStyle.clipRule(); in nodeAtFloatPointInternal() 333 …e.hasFill() || !hitRules.requireFill) && fillContains(localPoint, hitRules.requireFill, fillRule))) in nodeAtFloatPointInternal()
|
D | RenderSVGRect.cpp | 125 bool RenderSVGRect::shapeDependentFillContains(const FloatPoint& point, const WindRule fillRule) co… in shapeDependentFillContains() 128 return RenderSVGShape::shapeDependentFillContains(point, fillRule); in shapeDependentFillContains()
|
D | RenderSVGEllipse.cpp | 143 bool RenderSVGEllipse::shapeDependentFillContains(const FloatPoint& point, const WindRule fillRule)… in shapeDependentFillContains() 146 return RenderSVGShape::shapeDependentFillContains(point, fillRule); in shapeDependentFillContains()
|
D | RenderSVGResourceSolidColor.cpp | 63 context->setFillRule(svgStyle.fillRule()); in applyResource()
|
D | RenderSVGShape.h | 82 …bool fillContains(const FloatPoint&, bool requiresFill = true, const WindRule fillRule = RULE_NONZ…
|
D | RenderSVGResourceGradient.cpp | 121 context->setFillRule(svgStyle.fillRule()); in applyResource()
|
D | RenderSVGResourcePattern.cpp | 157 context->setFillRule(svgStyle.fillRule()); in applyResource()
|
D | SVGRenderTreeAsText.cpp | 319 writeIfNotDefault(ts, "fill rule", svgStyle.fillRule(), RULE_NONZERO); in writeStyle()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
D | PolygonShape.h | 63 PolygonShape(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule) in PolygonShape() argument 65 , m_polygon(vertices, fillRule) in PolygonShape()
|
D | Shape.cpp | 68 …c PassOwnPtr<Shape> createPolygonShape(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule) in createPolygonShape() argument 70 return adoptPtr(new PolygonShape(vertices, fillRule)); in createPolygonShape()
|
/external/chromium_org/third_party/WebKit/Source/platform/geometry/ |
D | FloatPolygonTest.cpp | 40 FloatPolygonTestValue(const float* coordinates, unsigned coordinatesLength, WindRule fillRule) in FloatPolygonTestValue() argument 46 m_polygon = adoptPtr(new FloatPolygon(vertices.release(), fillRule)); in FloatPolygonTestValue() 92 EXPECT_EQ(RULE_NONZERO, triangle.fillRule()); in TEST() 188 EXPECT_EQ(RULE_NONZERO, triangle.fillRule()); in TEST() 215 EXPECT_EQ(RULE_EVENODD, triangle.fillRule()); in TEST()
|
D | FloatPolygon.h | 52 FloatPolygon(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule); 57 WindRule fillRule() const { return m_fillRule; } in fillRule() function
|
D | FloatPolygon.cpp | 82 FloatPolygon::FloatPolygon(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule) in FloatPolygon() argument 84 , m_fillRule(fillRule) in FloatPolygon() 199 return (fillRule() == RULE_NONZERO) ? containsNonZero(point) : containsEvenOdd(point); in contains()
|
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/ |
D | HitRegion.h | 29 WindRule fillRule; member 49 WindRule fillRule() const { return m_fillRule; } in fillRule() function
|
D | HitRegionOptions.idl | 13 CanvasFillRule fillRule = "nonzero";
|
D | HitRegion.cpp | 17 , m_fillRule(options.fillRule) in HitRegion()
|
D | CanvasRenderingContext2D.cpp | 1024 WindRule windRule = c->fillRule(); in fillInternal() 2424 if (options.fillRule() != "evenodd") in addHitRegion() 2425 passOptions.fillRule = RULE_NONZERO; in addHitRegion() 2427 passOptions.fillRule = RULE_EVENODD; in addHitRegion()
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
D | GraphicsContext.h | 138 WindRule fillRule() const { return immutableState()->fillRule(); } in fillRule() function 139 void setFillRule(WindRule fillRule) { mutableState()->setFillRule(fillRule); } in setFillRule() argument
|
D | GraphicsContextState.h | 105 WindRule fillRule() const { return m_fillRule; } in fillRule() function
|
/external/chromium_org/third_party/skia/include/device/xps/ |
D | SkXPSDevice.h | 297 XPS_FILL_RULE fillRule);
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | SVGCSSComputedStyleDeclaration.cpp | 141 return CSSPrimitiveValue::create(svgStyle.fillRule()); in getSVGPropertyCSSValue()
|
/external/skia/include/device/xps/ |
D | SkXPSDevice.h | 283 XPS_FILL_RULE fillRule);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | SVGRenderStyle.h | 297 WindRule fillRule() const { return (WindRule) svg_inherited_flags._fillRule; } in fillRule() function
|