Searched refs:SkSVGObjectBoundingBoxUnits (Results 1 – 18 of 18) sorted by relevance
/external/skia/modules/svg/include/ |
D | SkSVGFilter.h | 25 SkSVGObjectBoundingBoxUnits, in SVG_ATTR() argument 26 SkSVGObjectBoundingBoxUnits(SkSVGObjectBoundingBoxUnits::Type::kObjectBoundingBox)) in SVG_ATTR() 28 SkSVGObjectBoundingBoxUnits, in SVG_ATTR() 29 SkSVGObjectBoundingBoxUnits(SkSVGObjectBoundingBoxUnits::Type::kUserSpaceOnUse)) in SVG_ATTR()
|
D | SkSVGMask.h | 25 SVG_ATTR(MaskUnits, SkSVGObjectBoundingBoxUnits, 26 SkSVGObjectBoundingBoxUnits(SkSVGObjectBoundingBoxUnits::Type::kObjectBoundingBox)) 27 SVG_ATTR(MaskContentUnits, SkSVGObjectBoundingBoxUnits, 28 SkSVGObjectBoundingBoxUnits(SkSVGObjectBoundingBoxUnits::Type::kUserSpaceOnUse))
|
D | SkSVGClipPath.h | 20 SVG_ATTR(ClipPathUnits, SkSVGObjectBoundingBoxUnits, 21 SkSVGObjectBoundingBoxUnits(SkSVGObjectBoundingBoxUnits::Type::kUserSpaceOnUse))
|
D | SkSVGGradient.h | 25 SkSVGObjectBoundingBoxUnits, in SVG_ATTR() 26 SkSVGObjectBoundingBoxUnits(SkSVGObjectBoundingBoxUnits::Type::kObjectBoundingBox)) in SVG_ATTR()
|
D | SkSVGFilterContext.h | 24 const SkSVGObjectBoundingBoxUnits& primitiveUnits) in SkSVGFilterContext() 33 const SkSVGObjectBoundingBoxUnits& primitiveUnits() const { return fPrimitiveUnits; } in primitiveUnits() 62 SkSVGObjectBoundingBoxUnits fPrimitiveUnits;
|
D | SkSVGRenderContext.h | 146 OBBTransform transformForCurrentOBB(SkSVGObjectBoundingBoxUnits) const; 150 SkSVGObjectBoundingBoxUnits) const;
|
D | SkSVGTypes.h | 414 class SkSVGObjectBoundingBoxUnits { 421 SkSVGObjectBoundingBoxUnits() : fType(Type::kUserSpaceOnUse) {} in SkSVGObjectBoundingBoxUnits() function 422 explicit SkSVGObjectBoundingBoxUnits(Type t) : fType(t) {} in SkSVGObjectBoundingBoxUnits() function 424 bool operator==(const SkSVGObjectBoundingBoxUnits& other) const { 427 bool operator!=(const SkSVGObjectBoundingBoxUnits& other) const {
|
D | SkSVGValue.h | 82 using SkSVGObjectBoundingBoxUnitsValue = SkSVGWrapperValue<SkSVGObjectBoundingBoxUnits,
|
/external/skia/modules/svg/src/ |
D | SkSVGFilter.cpp | 22 this->setFilterUnits(SkSVGAttributeParser::parse<SkSVGObjectBoundingBoxUnits>( in parseAndSetAttribute() 24 this->setPrimitiveUnits(SkSVGAttributeParser::parse<SkSVGObjectBoundingBoxUnits>( in parseAndSetAttribute()
|
D | SkSVGMask.cpp | 21 SkSVGAttributeParser::parse<SkSVGObjectBoundingBoxUnits>("maskUnits", n, v)) || in parseAndSetAttribute() 23 SkSVGAttributeParser::parse<SkSVGObjectBoundingBoxUnits>("maskContentUnits", n, v)); in parseAndSetAttribute()
|
D | SkSVGRenderContext.cpp | 475 SkSVGRenderContext::transformForCurrentOBB(SkSVGObjectBoundingBoxUnits u) const { in transformForCurrentOBB() 476 if (!fOBBScope.fNode || u.type() == SkSVGObjectBoundingBoxUnits::Type::kUserSpaceOnUse) { in transformForCurrentOBB() 487 SkSVGObjectBoundingBoxUnits obbu) const { in resolveOBBRect() 490 if (obbu.type() == SkSVGObjectBoundingBoxUnits::Type::kObjectBoundingBox) { in resolveOBBRect()
|
D | SkSVGAttributeParser.cpp | 630 bool SkSVGAttributeParser::parse(SkSVGObjectBoundingBoxUnits* objectBoundingBoxUnits) { in parse() 634 SkSVGObjectBoundingBoxUnits(SkSVGObjectBoundingBoxUnits::Type::kUserSpaceOnUse); in parse() 638 SkSVGObjectBoundingBoxUnits(SkSVGObjectBoundingBoxUnits::Type::kObjectBoundingBox); in parse()
|
D | SkSVGClipPath.cpp | 17 SkSVGAttributeParser::parse<SkSVGObjectBoundingBoxUnits>("clipPathUnits", n, v)); in parseAndSetAttribute()
|
D | SkSVGLinearGradient.cpp | 28 this->getGradientUnits().type() == SkSVGObjectBoundingBoxUnits::Type::kObjectBoundingBox in onMakeShader()
|
D | SkSVGFeDisplacementMap.cpp | 38 if (fctx.primitiveUnits().type() == SkSVGObjectBoundingBoxUnits::Type::kObjectBoundingBox) { in onMakeImageFilter()
|
D | SkSVGRadialGradient.cpp | 29 this->getGradientUnits().type() == SkSVGObjectBoundingBoxUnits::Type::kObjectBoundingBox in onMakeShader()
|
D | SkSVGGradient.cpp | 21 this->setGradientUnits(SkSVGAttributeParser::parse<SkSVGObjectBoundingBoxUnits>( in parseAndSetAttribute()
|
D | SkSVGDOM.cpp | 111 auto parseResult = SkSVGAttributeParser::parse<SkSVGObjectBoundingBoxUnits>(stringValue); in SetObjectBoundingBoxUnitsAttribute()
|