Home
last modified time | relevance | path

Searched refs:SkSVGObjectBoundingBoxUnits (Results 1 – 18 of 18) sorted by relevance

/external/skia/modules/svg/include/
DSkSVGFilter.h25 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()
DSkSVGMask.h25 SVG_ATTR(MaskUnits, SkSVGObjectBoundingBoxUnits,
26 SkSVGObjectBoundingBoxUnits(SkSVGObjectBoundingBoxUnits::Type::kObjectBoundingBox))
27 SVG_ATTR(MaskContentUnits, SkSVGObjectBoundingBoxUnits,
28 SkSVGObjectBoundingBoxUnits(SkSVGObjectBoundingBoxUnits::Type::kUserSpaceOnUse))
DSkSVGClipPath.h20 SVG_ATTR(ClipPathUnits, SkSVGObjectBoundingBoxUnits,
21 SkSVGObjectBoundingBoxUnits(SkSVGObjectBoundingBoxUnits::Type::kUserSpaceOnUse))
DSkSVGGradient.h25 SkSVGObjectBoundingBoxUnits, in SVG_ATTR()
26 SkSVGObjectBoundingBoxUnits(SkSVGObjectBoundingBoxUnits::Type::kObjectBoundingBox)) in SVG_ATTR()
DSkSVGFilterContext.h24 const SkSVGObjectBoundingBoxUnits& primitiveUnits) in SkSVGFilterContext()
33 const SkSVGObjectBoundingBoxUnits& primitiveUnits() const { return fPrimitiveUnits; } in primitiveUnits()
62 SkSVGObjectBoundingBoxUnits fPrimitiveUnits;
DSkSVGRenderContext.h146 OBBTransform transformForCurrentOBB(SkSVGObjectBoundingBoxUnits) const;
150 SkSVGObjectBoundingBoxUnits) const;
DSkSVGTypes.h414 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 {
DSkSVGValue.h82 using SkSVGObjectBoundingBoxUnitsValue = SkSVGWrapperValue<SkSVGObjectBoundingBoxUnits,
/external/skia/modules/svg/src/
DSkSVGFilter.cpp22 this->setFilterUnits(SkSVGAttributeParser::parse<SkSVGObjectBoundingBoxUnits>( in parseAndSetAttribute()
24 this->setPrimitiveUnits(SkSVGAttributeParser::parse<SkSVGObjectBoundingBoxUnits>( in parseAndSetAttribute()
DSkSVGMask.cpp21 SkSVGAttributeParser::parse<SkSVGObjectBoundingBoxUnits>("maskUnits", n, v)) || in parseAndSetAttribute()
23 SkSVGAttributeParser::parse<SkSVGObjectBoundingBoxUnits>("maskContentUnits", n, v)); in parseAndSetAttribute()
DSkSVGRenderContext.cpp475 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()
DSkSVGAttributeParser.cpp630 bool SkSVGAttributeParser::parse(SkSVGObjectBoundingBoxUnits* objectBoundingBoxUnits) { in parse()
634 SkSVGObjectBoundingBoxUnits(SkSVGObjectBoundingBoxUnits::Type::kUserSpaceOnUse); in parse()
638 SkSVGObjectBoundingBoxUnits(SkSVGObjectBoundingBoxUnits::Type::kObjectBoundingBox); in parse()
DSkSVGClipPath.cpp17 SkSVGAttributeParser::parse<SkSVGObjectBoundingBoxUnits>("clipPathUnits", n, v)); in parseAndSetAttribute()
DSkSVGLinearGradient.cpp28 this->getGradientUnits().type() == SkSVGObjectBoundingBoxUnits::Type::kObjectBoundingBox in onMakeShader()
DSkSVGFeDisplacementMap.cpp38 if (fctx.primitiveUnits().type() == SkSVGObjectBoundingBoxUnits::Type::kObjectBoundingBox) { in onMakeImageFilter()
DSkSVGRadialGradient.cpp29 this->getGradientUnits().type() == SkSVGObjectBoundingBoxUnits::Type::kObjectBoundingBox in onMakeShader()
DSkSVGGradient.cpp21 this->setGradientUnits(SkSVGAttributeParser::parse<SkSVGObjectBoundingBoxUnits>( in parseAndSetAttribute()
DSkSVGDOM.cpp111 auto parseResult = SkSVGAttributeParser::parse<SkSVGObjectBoundingBoxUnits>(stringValue); in SetObjectBoundingBoxUnitsAttribute()