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 86 PolygonShape(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule)
88 , m_polygon(vertices, fillRule)
PolygonShape.cpp 139 static inline PassOwnPtr<FloatPolygon> computeShapePaddingBounds(const FloatPolygon& polygon, float padding, WindRule fillRule)
157 return adoptPtr(new FloatPolygon(paddedVertices.release(), fillRule));
160 static inline PassOwnPtr<FloatPolygon> computeShapeMarginBounds(const FloatPolygon& polygon, float margin, WindRule fillRule)
178 return adoptPtr(new FloatPolygon(marginVertices.release(), fillRule));
188 m_paddingBounds = computeShapePaddingBounds(m_polygon, shapePadding(), m_polygon.fillRule());
200 m_marginBounds = computeShapeMarginBounds(m_polygon, shapeMargin(), m_polygon.fillRule());
286 if (polygon.fillRule() == RULE_EVENODD) {
Shape.cpp 62 static PassOwnPtr<Shape> createPolygonShape(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule)
64 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 111 bool RenderSVGShape::shapeDependentFillContains(const FloatPoint& point, const WindRule fillRule) const
113 return path().contains(point, fillRule);
116 bool RenderSVGShape::fillContains(const FloatPoint& point, bool requiresFill, const WindRule fillRule)
125 return shapeDependentFillContains(point, fillRule);
325 WindRule fillRule = svgStyle->fillRule();
327 fillRule = svgStyle->clipRule();
329 || (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 82 bool fillContains(const FloatPoint&, bool requiresFill = true, const WindRule fillRule = RULE_NONZERO);
RenderSVGResourceGradient.cpp 128 context->setFillRule(svgStyle->fillRule());
RenderSVGResourcePattern.cpp 161 context->setFillRule(svgStyle->fillRule());
SVGRenderTreeAsText.cpp 307 writeIfNotDefault(ts, "fill rule", svgStyle->fillRule(), RULE_NONZERO);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
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)
GraphicsContext.h 118 WindRule fillRule() const { return m_state->m_fillRule; }
119 void setFillRule(WindRule fillRule) { m_state->m_fillRule = fillRule; }
GraphicsContext.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
SVGCSSComputedStyleDeclaration.cpp 105 return CSSPrimitiveValue::create(svgStyle->fillRule());
  /external/chromium_org/third_party/skia/include/device/xps/
SkXPSDevice.h 285 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 312 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 889 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 399 milliseconds

1 2