Searched refs:SkSVGPrimitiveTypeWrapper (Results 1 – 1 of 1) sorted by relevance
21 class SkSVGPrimitiveTypeWrapper {23 SkSVGPrimitiveTypeWrapper() = default;24 explicit constexpr SkSVGPrimitiveTypeWrapper(T v) : fValue(v) {} in SkSVGPrimitiveTypeWrapper() function26 SkSVGPrimitiveTypeWrapper(const SkSVGPrimitiveTypeWrapper&) = default;27 SkSVGPrimitiveTypeWrapper& operator=(const SkSVGPrimitiveTypeWrapper&) = default;28 SkSVGPrimitiveTypeWrapper& operator=(const T& v) { fValue = v; return *this; }30 bool operator==(const SkSVGPrimitiveTypeWrapper<T>& other) const {33 bool operator!=(const SkSVGPrimitiveTypeWrapper<T>& other) const {44 using SkSVGColorType = SkSVGPrimitiveTypeWrapper<SkColor >;45 using SkSVGNumberType = SkSVGPrimitiveTypeWrapper<SkScalar>;[all …]