Home | History | Annotate | Download | only in model

Lines Matching defs:SkSVGDashArray

275 class SkSVGDashArray {
283 SkSVGDashArray() : fType(Type::kNone) {}
284 explicit SkSVGDashArray(Type t) : fType(t) {}
285 explicit SkSVGDashArray(SkTDArray<SkSVGLength>&& dashArray)
289 SkSVGDashArray(const SkSVGDashArray&) = default;
290 SkSVGDashArray& operator=(const SkSVGDashArray&) = default;
292 bool operator==(const SkSVGDashArray& other) const {
295 bool operator!=(const SkSVGDashArray& other) const { return !(*this == other); }