Lines Matching refs:attr
111 XMLAttribute attr;
113 attr.name = "xmlns";
115 attr.name = "xmlns:";
116 attr.name += it->second;
118 attr.value = it->first;
119 attrs->push_back(attr);
163 const XMLAttribute& attr = list[i];
164 if (attr.ns == ns && attr.name == name) {
165 return attr.value;
312 const XMLAttribute& attr = attrs[i];
322 result += nspaces.GetPrefix(attr.ns);
323 result += attr.name;
325 result += xml_attr_escape(attr.value);
462 XMLAttribute attr;
463 parse_namespace(in[0], &attr.ns, &attr.name);
464 attr.value = in[1];
465 out->push_back(attr);