Home | History | Annotate | Download | only in libxml2

Lines Matching full:lastattr

3336 	    xmlAttrPtr lastattr;
3339 lastattr = xmlHasNsProp(parent, cur->name, NULL);
3341 lastattr = xmlHasNsProp(parent, cur->name, cur->ns->href);
3342 if ((lastattr != NULL) && (lastattr != (xmlAttrPtr) cur) && (lastattr->type != XML_ATTRIBUTE_DECL)) {
3344 xmlUnlinkNode((xmlNodePtr) lastattr);
3345 xmlFreeProp(lastattr);
3347 if (lastattr == (xmlAttrPtr) cur)
3355 xmlAttrPtr lastattr = parent->properties;
3356 while (lastattr->next != NULL) {
3357 lastattr = lastattr->next;
3359 lastattr->next = (xmlAttrPtr) cur;
3360 ((xmlAttrPtr) cur)->prev = lastattr;