Home
last modified time | relevance | path

Searched refs:fIRI (Results 1 – 2 of 2) sorted by relevance

/external/skqp/experimental/svg/model/
DSkSVGTypes.h101 : fType(Type::kIRI), fColor(SK_ColorBLACK), fIRI(iri) {} in SkSVGPaint()
107 return fType == other.fType && fColor == other.fColor && fIRI == other.fIRI;
113 const SkString& iri() const { SkASSERT(fType == Type::kIRI); return fIRI; } in iri()
120 SkString fIRI; variable
133 explicit SkSVGClip(const SkString& iri) : fType(Type::kIRI), fIRI(iri) {} in SkSVGClip()
139 return fType == other.fType && fIRI == other.fIRI;
144 const SkString& iri() const { SkASSERT(fType == Type::kIRI); return fIRI; } in iri()
148 SkString fIRI; variable
/external/skia/modules/svg/include/
DSkSVGTypes.h146 SkSVGIRI(Type t, const SkSVGStringType& iri) : fType(t), fIRI(iri) {} in SkSVGIRI()
149 const SkSVGStringType& iri() const { return fIRI; } in iri()
152 return fType == other.fType && fIRI == other.fIRI;
158 SkSVGStringType fIRI; variable
198 : fType(Type::kIRI), fColor(fallback_color), fIRI(iri) {} in SkSVGPaint()
204 return fType == other.fType && fColor == other.fColor && fIRI == other.fIRI;
213 const SkSVGIRI& iri() const { SkASSERT(fType == Type::kIRI); return fIRI; } in iri()
220 SkSVGIRI fIRI; variable
233 explicit SkSVGFuncIRI(SkSVGIRI&& iri) : fType(Type::kIRI), fIRI(std::move(iri)) {} in SkSVGFuncIRI()
236 return fType == other.fType && fIRI == other.fIRI;
[all …]