Home
last modified time | relevance | path

Searched refs:SkSVGLengthValue (Results 1 – 10 of 10) sorted by relevance

/external/skia/experimental/svg/model/
DSkSVGRect.cpp43 if (const auto* x = v.as<SkSVGLengthValue>()) { in onSetAttribute()
48 if (const auto* y = v.as<SkSVGLengthValue>()) { in onSetAttribute()
53 if (const auto* w = v.as<SkSVGLengthValue>()) { in onSetAttribute()
58 if (const auto* h = v.as<SkSVGLengthValue>()) { in onSetAttribute()
63 if (const auto* rx = v.as<SkSVGLengthValue>()) { in onSetAttribute()
68 if (const auto* ry = v.as<SkSVGLengthValue>()) { in onSetAttribute()
DSkSVGEllipse.cpp34 if (const auto* cx = v.as<SkSVGLengthValue>()) { in onSetAttribute()
39 if (const auto* cy = v.as<SkSVGLengthValue>()) { in onSetAttribute()
44 if (const auto* rx = v.as<SkSVGLengthValue>()) { in onSetAttribute()
49 if (const auto* ry = v.as<SkSVGLengthValue>()) { in onSetAttribute()
DSkSVGLine.cpp34 if (const auto* x1 = v.as<SkSVGLengthValue>()) { in onSetAttribute()
39 if (const auto* y1 = v.as<SkSVGLengthValue>()) { in onSetAttribute()
44 if (const auto* x2 = v.as<SkSVGLengthValue>()) { in onSetAttribute()
49 if (const auto* y2 = v.as<SkSVGLengthValue>()) { in onSetAttribute()
DSkSVGSVG.cpp70 if (const auto* x = v.as<SkSVGLengthValue>()) { in onSetAttribute()
75 if (const auto* y = v.as<SkSVGLengthValue>()) { in onSetAttribute()
80 if (const auto* w = v.as<SkSVGLengthValue>()) { in onSetAttribute()
85 if (const auto* h = v.as<SkSVGLengthValue>()) { in onSetAttribute()
DSkSVGLinearGradient.cpp62 if (const auto* x1 = v.as<SkSVGLengthValue>()) { in onSetAttribute()
67 if (const auto* y1 = v.as<SkSVGLengthValue>()) { in onSetAttribute()
72 if (const auto* x2 = v.as<SkSVGLengthValue>()) { in onSetAttribute()
77 if (const auto* y2 = v.as<SkSVGLengthValue>()) { in onSetAttribute()
DSkSVGCircle.cpp30 if (const auto* cx = v.as<SkSVGLengthValue>()) { in onSetAttribute()
35 if (const auto* cy = v.as<SkSVGLengthValue>()) { in onSetAttribute()
40 if (const auto* r = v.as<SkSVGLengthValue>()) { in onSetAttribute()
DSkSVGNode.cpp143 if (const SkSVGLengthValue* strokeWidth = v.as<SkSVGLengthValue>()) { in onSetAttribute()
DSkSVGStop.cpp29 if (const auto* offset = v.as<SkSVGLengthValue>()) { in onSetAttribute()
DSkSVGValue.h77 using SkSVGLengthValue = SkSVGWrapperValue<SkSVGLength , SkSVGValue::Type::kLength >; variable
DSkSVGDOM.cpp114 node->setAttribute(attr, SkSVGLengthValue(length)); in SetLengthAttribute()