Searched defs:fillRule (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/third_party/skia/src/svg/
H A DSkSVGPath.cpp31 SkString& fillRule = parser.getPaintLast(SkSVGPaint::kFillRule); local
32 if (fillRule.size() > 0)
33 parser._addAttribute("fillType", fillRule.equals("evenodd") ? "evenOdd" : "winding");
/external/skia/src/svg/
H A DSkSVGPath.cpp31 SkString& fillRule = parser.getPaintLast(SkSVGPaint::kFillRule); local
32 if (fillRule.size() > 0)
33 parser._addAttribute("fillType", fillRule.equals("evenodd") ? "evenOdd" : "winding");
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DPolygonShape.h63 PolygonShape(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule) argument
65 , m_polygon(vertices, fillRule)
H A DShape.cpp68 static PassOwnPtr<Shape> createPolygonShape(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule) argument
70 return adoptPtr(new PolygonShape(vertices, fillRule));
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DHitRegion.h29 WindRule fillRule; member in struct:blink::HitRegionOptionsInternal
49 WindRule fillRule() const { return m_fillRule; } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatPolygon.cpp82 FloatPolygon::FloatPolygon(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule) argument
84 , m_fillRule(fillRule)
199 return (fillRule() == RULE_NONZERO) ? containsNonZero(point) : containsEvenOdd(point);
H A DFloatPolygonTest.cpp40 FloatPolygonTestValue(const float* coordinates, unsigned coordinatesLength, WindRule fillRule) argument
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());
H A DFloatPolygon.h52 FloatPolygon(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule);
57 WindRule fillRule() const { return m_fillRule; } function in class:blink::FloatPolygon
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsContextState.h105 WindRule fillRule() const { return m_fillRule; } function in class:blink::FINAL
H A DGraphicsContext.h138 WindRule fillRule() const { return immutableState()->fillRule(); } function in class:blink::GraphicsContext
139 void setFillRule(WindRule fillRule) { mutableState()->setFillRule(fillRule); } argument
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGShape.cpp105 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) argument
119 return shapeDependentFillContains(point, fillRule);
328 WindRule fillRule = svgStyle.fillRule(); local
330 fillRule = svgStyle.clipRule();
333 || (hitRules.canHitFill && (svgStyle.hasFill() || !hitRules.requireFill) && fillContains(localPoint, hitRules.requireFill, fillRule)))
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DSVGRenderStyle.h297 WindRule fillRule() const { return (WindRule) svg_inherited_flags._fillRule; } function in class:blink::SVGRenderStyle
/external/chromium_org/third_party/skia/src/device/xps/
H A DSkXPSDevice.cpp1772 XPS_FILL_RULE fillRule) {
1788 HRM(clipGeometry->SetFillRule(fillRule),
1770 clipToPath(IXpsOMVisual* xpsVisual, const SkPath& clipPath, XPS_FILL_RULE fillRule) argument
/external/skia/src/device/xps/
H A DSkXPSDevice.cpp1926 XPS_FILL_RULE fillRule) {
1942 HRM(clipGeometry->SetFillRule(fillRule),
1924 clipToPath(IXpsOMVisual* xpsVisual, const SkPath& clipPath, XPS_FILL_RULE fillRule) argument

Completed in 366 milliseconds