Home
last modified time | relevance | path

Searched refs:fillRule (Results 1 – 22 of 22) sorted by relevance

/external/skia/modules/pathkit/tests/
DtestReporter.js38 function reportSVGString(svgstr, testname, fillRule='nofill') { argument
41 if (fillRule !== 'nofill') {
43 newPath.setAttribute('fill-rule', fillRule);
/external/skqp/modules/pathkit/tests/
DtestReporter.js38 function reportSVGString(svgstr, testname, fillRule='nofill') { argument
41 if (fillRule !== 'nofill') {
43 newPath.setAttribute('fill-rule', fillRule);
/external/skia/experimental/svg/model/
DSkSVGNode.cpp80 void SkSVGNode::setFillRule(const SkSVGFillRule& fillRule) { in setFillRule() argument
81 fPresentationAttributes.fFillRule.set(fillRule); in setFillRule()
137 if (const SkSVGFillRuleValue* fillRule = v.as<SkSVGFillRuleValue>()) { in onSetAttribute() local
138 this->setFillRule(*fillRule); in onSetAttribute()
DSkSVGDOM.cpp196 SkSVGFillRule fillRule; in SetFillRuleAttribute() local
198 if (!parser.parseFillRule(&fillRule)) { in SetFillRuleAttribute()
202 node->setAttribute(attr, SkSVGFillRuleValue(fillRule)); in SetFillRuleAttribute()
DSkSVGAttributeParser.cpp575 bool SkSVGAttributeParser::parseFillRule(SkSVGFillRule* fillRule) { in parseFillRule() argument
588 *fillRule = SkSVGFillRule(gFillRuleInfo[i].fType); in parseFillRule()
/external/skqp/experimental/svg/model/
DSkSVGNode.cpp80 void SkSVGNode::setFillRule(const SkSVGFillRule& fillRule) { in setFillRule() argument
81 fPresentationAttributes.fFillRule.set(fillRule); in setFillRule()
137 if (const SkSVGFillRuleValue* fillRule = v.as<SkSVGFillRuleValue>()) { in onSetAttribute() local
138 this->setFillRule(*fillRule); in onSetAttribute()
DSkSVGDOM.cpp196 SkSVGFillRule fillRule; in SetFillRuleAttribute() local
198 if (!parser.parseFillRule(&fillRule)) { in SetFillRuleAttribute()
202 node->setAttribute(attr, SkSVGFillRuleValue(fillRule)); in SetFillRuleAttribute()
DSkSVGAttributeParser.cpp575 bool SkSVGAttributeParser::parseFillRule(SkSVGFillRule* fillRule) { in parseFillRule() argument
588 *fillRule = SkSVGFillRule(gFillRuleInfo[i].fType); in parseFillRule()
/external/skqp/experimental/canvaskit/htmlcanvas/
Dcanvas2dcontext.js517 this.clip = function(path, fillRule) { argument
520 fillRule = path;
530 if (fillRule && fillRule.toLowerCase() === 'evenodd') {
652 this.fill = function(path, fillRule) { argument
655 fillRule = path;
660 if (fillRule === 'evenodd') {
662 } else if (fillRule === 'nonzero' || !fillRule) {
/external/skia/modules/canvaskit/htmlcanvas/
Dcanvas2dcontext.js517 this.clip = function(path, fillRule) { argument
520 fillRule = path;
530 if (fillRule && fillRule.toLowerCase() === 'evenodd') {
652 this.fill = function(path, fillRule) { argument
655 fillRule = path;
660 if (fillRule === 'evenodd') {
662 } else if (fillRule === 'nonzero' || !fillRule) {
/external/ImageMagick/Magick++/lib/Magick++/
DOptions.h113 void fillRule(const FillRule &fillRule_);
114 FillRule fillRule(void) const;
DDrawable.h502 void fillRule(const FillRule fillRule_);
503 FillRule fillRule(void) const;
1006 void fillRule( const FillRule fillRule_ ) in fillRule() function
1010 FillRule fillRule( void ) const in fillRule() function
DImage.h239 void fillRule(const FillRule &fillRule_);
240 FillRule fillRule(void) const;
/external/skqp/src/xps/
DSkXPSDevice.h254 XPS_FILL_RULE fillRule);
DSkXPSDevice.cpp1710 XPS_FILL_RULE fillRule) { in clipToPath() argument
1726 HRM(clipGeometry->SetFillRule(fillRule), in clipToPath()
/external/skia/src/xps/
DSkXPSDevice.h250 XPS_FILL_RULE fillRule);
DSkXPSDevice.cpp1710 XPS_FILL_RULE fillRule) { in clipToPath() argument
1726 HRM(clipGeometry->SetFillRule(fillRule), in clipToPath()
/external/ImageMagick/Magick++/lib/
DOptions.cpp275 void Magick::Options::fillRule(const FillRule &fillRule_) in fillRule() function in Magick::Options
280 Magick::FillRule Magick::Options::fillRule(void) const in fillRule() function in Magick::Options
DDrawable.cpp340 void Magick::DrawableClipRule::fillRule(const FillRule fillRule_) in fillRule() function in Magick::DrawableClipRule
345 Magick::FillRule Magick::DrawableClipRule::fillRule(void) const in fillRule() function in Magick::DrawableClipRule
DImage.cpp795 void Magick::Image::fillRule(const Magick::FillRule &fillRule_) in fillRule() function in Magick::Image
798 options()->fillRule(fillRule_); in fillRule()
801 Magick::FillRule Magick::Image::fillRule(void) const in fillRule() function in Magick::Image
803 return constOptions()->fillRule(); in fillRule()
/external/ImageMagick/Magick++/
DNEWS157 * Added fillRule method to Image class.
DChangeLog782 * lib/Image.cpp (fillRule): New method to specify the rule to use when filling drawn objects.