Home | History | Annotate | Download | only in libxml2

Lines Matching refs:attr

240  * @attr:  the attribute
247 xmlTextReaderRemoveID(xmlDocPtr doc, xmlAttrPtr attr) {
253 if (attr == NULL) return(-1);
258 ID = xmlNodeListGetString(doc, attr->children, 1);
263 if (id == NULL || id->attr != attr) {
266 id->name = attr->name;
267 id->attr = NULL;
2925 xmlAttrPtr attr;
2945 attr = node->properties;
2946 while (attr != NULL) {
2948 attr = attr->next;
3532 xmlAttrPtr attr = (xmlAttrPtr) node;
3534 if (attr->parent != NULL)
3536 (attr->parent->doc, attr->children, 1));
3538 return (xmlNodeListGetString(NULL, attr->children, 1));
3578 xmlAttrPtr attr = (xmlAttrPtr) node;
3580 if ((attr->children != NULL) &&
3581 (attr->children->type == XML_TEXT_NODE) &&
3582 (attr->children->next == NULL))
3583 return(attr->children->content);