Lines Matching refs:name
151 SkString name, value;
159 name = TrimmedString(fPos, valueSep - 1);
166 return std::make_tuple(name, value);
181 bool set_string_attribute(const sk_sp<SkSVGNode>& node, const char* name, const char* value);
186 SkString name, value;
189 std::tie(name, value) = iter.next();
190 if (name.isEmpty()) {
193 set_string_attribute(node, name.c_str(), value.c_str());
288 bool set_string_attribute(const sk_sp<SkSVGNode>& node, const char* name, const char* value) {
289 if (node->parseAndSetAttribute(name, value)) {
296 name, sizeof(gAttributeParseInfo[0]));
299 SkDebugf("unhandled attribute: %s\n", name);
308 SkDebugf("could not parse attribute: '%s=\"%s\"'\n", name, value);
318 const char* name, *value;
320 while ((name = attrIter.next(&value))) {
322 if (!strcmp(name, "id")) {
326 set_string_attribute(svgNode, name, value);