Searched defs:SkSVGPrimitiveTypeWrapper (Results 1 - 1 of 1) sorted by relevance

/external/skia/experimental/svg/model/
H A DSkSVGTypes.h21 class SkSVGPrimitiveTypeWrapper { class
23 SkSVGPrimitiveTypeWrapper() = default;
24 explicit constexpr SkSVGPrimitiveTypeWrapper(T v) : fValue(v) {} function in class:SkSVGPrimitiveTypeWrapper
26 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<
[all...]

Completed in 74 milliseconds