Lines Matching refs:set
66 bool set##attr_name(SkSVGAttributeParser::ParseResult< \
68 if (pr.isValid()) { this->set##attr_name(std::move(*pr)); } \
76 void set##attr_name(const SkSVGProperty<attr_type, attr_inherited>& v) { \
82 dest->set(SkSVGPropertyState::kInherit); \
85 void set##attr_name(SkSVGProperty<attr_type, attr_inherited>&& v) { \
91 dest->set(SkSVGPropertyState::kInherit); \
193 bool set##attr_name( \
195 if (pr.isValid()) { this->set##attr_name(*pr); } \
198 bool set##attr_name( \
200 if (pr.isValid()) { this->set##attr_name(std::move(*pr)); } \
204 void set##attr_name(const attr_type& a) { set_cp(a); } \
205 void set##attr_name(attr_type&& a) { set_mv(std::move(a)); }
224 [this](const attr_type& a) { this->f##attr_name.set(a); }, \
225 [this](attr_type&& a) { this->f##attr_name.set(std::move(a)); })