Home | History | Annotate | Download | only in src

Lines Matching full:lastattr

3325 	    xmlAttrPtr lastattr;
3328 lastattr = xmlHasNsProp(parent, cur->name, NULL);
3330 lastattr = xmlHasNsProp(parent, cur->name, cur->ns->href);
3331 if ((lastattr != NULL) && (lastattr != (xmlAttrPtr) cur) && (lastattr->type != XML_ATTRIBUTE_DECL)) {
3333 xmlUnlinkNode((xmlNodePtr) lastattr);
3334 xmlFreeProp(lastattr);
3336 if (lastattr == (xmlAttrPtr) cur)
3344 xmlAttrPtr lastattr = parent->properties;
3345 while (lastattr->next != NULL) {
3346 lastattr = lastattr->next;
3348 lastattr->next = (xmlAttrPtr) cur;
3349 ((xmlAttrPtr) cur)->prev = lastattr;