Home | History | Annotate | Download | only in dom

Lines Matching refs:attrs

762         if (NamedNodeMap* attrs = namedAttrMap.get()) {
763 Attribute* idItem = attrs->getAttributeItem(idAttributeName());
773 if (NamedNodeMap* attrs = namedAttrMap.get()) {
774 Attribute* idItem = attrs->getAttributeItem(idAttributeName());
1163 NamedNodeMap* attrs = attributes(true);
1164 if (!attrs)
1167 return static_pointer_cast<Attr>(attrs->removeNamedItem(attr->qualifiedName(), ec));
1210 NamedNodeMap* attrs = attributes(true);
1211 if (!attrs)
1214 return static_pointer_cast<Attr>(attrs->getNamedItem(localName));
1219 NamedNodeMap* attrs = attributes(true);
1220 if (!attrs)
1222 return static_pointer_cast<Attr>(attrs->getNamedItem(QualifiedName(nullAtom, localName, namespaceURI)));
1227 NamedNodeMap* attrs = attributes(true);
1228 if (!attrs)
1234 return attrs->getAttributeItem(localName, false);
1239 NamedNodeMap* attrs = attributes(true);
1240 if (!attrs)
1242 return attrs->getAttributeItem(QualifiedName(nullAtom, localName, namespaceURI));
1387 NamedNodeMap* attrs = attributes(true);
1388 if (!attrs)
1390 unsigned numAttrs = attrs->length();
1392 if (Attr* attr = attrs->attributeItem(i)->attr())