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

  /external/skia/experimental/svg/model/
SkSVGShape.cpp 31 SkPath::FillType SkSVGShape::FillRuleToFillType(const SkSVGFillRule& fillRule) {
33 case SkSVGFillRule::Type::kNonZero:
35 case SkSVGFillRule::Type::kEvenOdd:
SkSVGAttribute.cpp 15 result.fFillRule.set(SkSVGFillRule(SkSVGFillRule::Type::kNonZero));
SkSVGShape.h 31 static SkPath::FillType FillRuleToFillType(const SkSVGFillRule&);
SkSVGTypes.h 222 class SkSVGFillRule {
230 constexpr SkSVGFillRule() : fType(Type::kInherit) {}
231 constexpr explicit SkSVGFillRule(Type t) : fType(t) {}
233 SkSVGFillRule(const SkSVGFillRule&) = default;
234 SkSVGFillRule& operator=(const SkSVGFillRule&) = default;
236 bool operator==(const SkSVGFillRule& other) const { return fType == other.fType; }
237 bool operator!=(const SkSVGFillRule& other) const { return !(*this == other); }
SkSVGAttribute.h 61 SkTLazy<SkSVGFillRule> fFillRule;
SkSVGNode.h 54 void setFillRule(const SkSVGFillRule&);
SkSVGAttributeParser.h 19 bool parseFillRule(SkSVGFillRule*);
SkSVGAttributeParser.cpp 575 bool SkSVGAttributeParser::parseFillRule(SkSVGFillRule* fillRule) {
577 SkSVGFillRule::Type fType;
580 { SkSVGFillRule::Type::kNonZero, "nonzero" },
581 { SkSVGFillRule::Type::kEvenOdd, "evenodd" },
582 { SkSVGFillRule::Type::kInherit, "inherit" },
588 *fillRule = SkSVGFillRule(gFillRuleInfo[i].fType);
SkSVGValue.h 76 using SkSVGFillRuleValue = SkSVGWrapperValue<SkSVGFillRule , SkSVGValue::Type::kFillRule >;
SkSVGNode.cpp 73 void SkSVGNode::setFillRule(const SkSVGFillRule& fillRule) {
SkSVGDOM.cpp 192 SkSVGFillRule fillRule;

Completed in 1125 milliseconds