HomeSort by relevance Sort by last modified time
    Searched refs:fillRule (Results 1 - 21 of 21) sorted by null

  /external/skia/src/svg/
SkSVGPath.cpp 39 SkString& fillRule = parser.getPaintLast(SkSVGPaint::kFillRule);
40 if (fillRule.size() > 0)
41 parser._addAttribute("fillType", fillRule.equals("evenodd") ? "evenOdd" : "winding");
  /external/webkit/WebCore/platform/graphics/
GraphicsContextPrivate.h 43 , fillRule(RULE_NONZERO)
65 WindRule fillRule;
GraphicsContext.cpp 177 WindRule GraphicsContext::fillRule() const
179 return m_common->state.fillRule;
182 void GraphicsContext::setFillRule(WindRule fillRule)
184 m_common->state.fillRule = fillRule;
GraphicsContext.h 178 WindRule fillRule() const;
  /external/webkit/WebCore/svg/graphics/
SVGPaintServerSolid.cpp 71 context->setFillRule(style ? svgStyle->fillRule() : RULE_NONZERO);
SVGPaintServerPattern.cpp 148 context->setFillRule(svgStyle->fillRule());
SVGPaintServerGradient.cpp 217 context->setFillRule(svgStyle->fillRule());
  /external/webkit/WebCore/css/
SVGCSSComputedStyleDeclaration.cpp 81 return CSSPrimitiveValue::create(svgStyle->fillRule());
SVGCSSStyleSelector.cpp 205 HANDLE_INHERIT_AND_INITIAL(fillRule, FillRule)
  /external/webkit/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 502 bool useEOFill = state.fillRule == RULE_EVENODD;
550 static inline void fillPathWithFillRule(CGContextRef context, WindRule fillRule)
552 if (fillRule == RULE_EVENODD)
570 if (fillRule() == RULE_EVENODD)
582 fillPathWithFillRule(context, fillRule());
    [all...]
  /external/webkit/WebCore/rendering/style/
SVGRenderStyle.h 68 SVG_RS_DEFINE_ATTRIBUTE_INHERITED(WindRule, FillRule, fillRule, RULE_NONZERO)
  /external/webkit/WebCore/rendering/
RenderPath.cpp 90 return m_path.contains(point, style()->svgStyle()->fillRule());
SVGRenderTreeAsText.cpp 298 writeIfNotDefault(ts, "fill rule", svgStyle->fillRule(), RULE_NONZERO);
  /external/webkit/WebCore/platform/graphics/qt/
PathQt.cpp 74 Qt::FillRule savedRule = m_path.fillRule();
GraphicsContextQt.cpp 157 static inline Qt::FillRule toQtFillRule(WindRule rule)
536 path.setFillRule(toQtFillRule(fillRule()));
563 path.setFillRule(toQtFillRule(fillRule()));
    [all...]
  /external/webkit/WebCore/platform/graphics/openvg/
PainterOpenVG.cpp 80 static VGFillRule toVGFillRule(WindRule fillRule)
82 return fillRule == RULE_EVENODD ? VG_EVEN_ODD : VG_NON_ZERO;
  /external/webkit/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 506 cairo_set_fill_rule(cr, fillRule() == RULE_EVENODD ? CAIRO_FILL_RULE_EVEN_ODD : CAIRO_FILL_RULE_WINDING);
533 cairo_set_fill_rule(cr, fillRule() == RULE_EVENODD ? CAIRO_FILL_RULE_EVEN_ODD : CAIRO_FILL_RULE_WINDING);
    [all...]
  /external/webkit/WebCore/platform/graphics/android/
GraphicsContextAndroid.cpp     [all...]
  /external/webkit/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp 717 path.setFillType(state.fillRule == RULE_EVENODD ?
    [all...]
  /prebuilt/darwin-x86/swt/
swt.jar 
  /prebuilt/darwin-x86_64/swt/
swt.jar 

Completed in 353 milliseconds