HomeSort by relevance Sort by last modified time
    Searched refs:fillRule (Results 1 - 25 of 27) 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 85 PolygonShape(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule)
87 , m_polygon(vertices, fillRule)
PolygonShape.cpp 140 static inline PassOwnPtr<FloatPolygon> computeShapePaddingBounds(const FloatPolygon& polygon, float padding, WindRule fillRule)
158 return adoptPtr(new FloatPolygon(paddedVertices.release(), fillRule));
161 static inline PassOwnPtr<FloatPolygon> computeShapeMarginBounds(const FloatPolygon& polygon, float margin, WindRule fillRule)
179 return adoptPtr(new FloatPolygon(marginVertices.release(), fillRule));
189 m_paddingBounds = computeShapePaddingBounds(m_polygon, shapePadding(), m_polygon.fillRule());
201 m_marginBounds = computeShapeMarginBounds(m_polygon, shapeMargin(), m_polygon.fillRule());
300 if (edgeCrossing && polygon.fillRule() == RULE_NONZERO) {
Shape.cpp 72 static PassOwnPtr<Shape> createPolygonShape(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule)
74 return adoptPtr(new PolygonShape(vertices, fillRule));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGRect.cpp 121 bool RenderSVGRect::shapeDependentFillContains(const FloatPoint& point, const WindRule fillRule) const
124 return RenderSVGShape::shapeDependentFillContains(point, fillRule);
RenderSVGShape.cpp 112 bool RenderSVGShape::shapeDependentFillContains(const FloatPoint& point, const WindRule fillRule) const
114 return path().contains(point, fillRule);
117 bool RenderSVGShape::fillContains(const FloatPoint& point, bool requiresFill, const WindRule fillRule)
126 return shapeDependentFillContains(point, fillRule);
338 WindRule fillRule = svgStyle->fillRule();
340 fillRule = svgStyle->clipRule();
343 || (hitRules.canHitFill && (svgStyle->hasFill() || !hitRules.requireFill) && fillContains(localPoint, hitRules.requireFill, fillRule)))
RenderSVGResourceSolidColor.cpp 64 context->setFillRule(svgStyle ? svgStyle->fillRule() : RULE_NONZERO);
RenderSVGEllipse.cpp 141 bool RenderSVGEllipse::shapeDependentFillContains(const FloatPoint& point, const WindRule fillRule) const
144 return RenderSVGShape::shapeDependentFillContains(point, fillRule);
RenderSVGShape.h 85 bool fillContains(const FloatPoint&, bool requiresFill = true, const WindRule fillRule = RULE_NONZERO);
RenderSVGResourceGradient.cpp 129 context->setFillRule(svgStyle->fillRule());
RenderSVGResourcePattern.cpp 162 context->setFillRule(svgStyle->fillRule());
SVGRenderTreeAsText.cpp 297 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; }
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 120 WindRule fillRule() const { return m_state->m_fillRule; }
121 void setFillRule(WindRule fillRule) { m_state->m_fillRule = fillRule; }
GraphicsContext.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
SVGCSSComputedStyleDeclaration.cpp 123 return CSSPrimitiveValue::create(svgStyle->fillRule());
  /external/chromium_org/third_party/skia/include/device/xps/
SkXPSDevice.h 290 XPS_FILL_RULE fillRule);
  /external/skia/include/device/xps/
SkXPSDevice.h 290 XPS_FILL_RULE fillRule);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
SVGRenderStyle.h 314 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 902 WindRule windRule = c->fillRule();
    [all...]
  /prebuilts/tools/common/m2/internal/com/android/external/eclipse/swt/3.5.0/
swt-3.5.0.jar 

Completed in 1703 milliseconds

1 2