Lines Matching refs:lastattr
1007 xmlAttrPtr lastattr; in PHP_FUNCTION() local
1010 lastattr = xmlHasProp(refp->parent, child->name); in PHP_FUNCTION()
1012 lastattr = xmlHasNsProp(refp->parent, child->name, child->ns->href); in PHP_FUNCTION()
1013 if (lastattr != NULL && lastattr->type != XML_ATTRIBUTE_DECL) { in PHP_FUNCTION()
1014 if (lastattr != (xmlAttrPtr) child) { in PHP_FUNCTION()
1015 xmlUnlinkNode((xmlNodePtr) lastattr); in PHP_FUNCTION()
1016 php_libxml_node_free_resource((xmlNodePtr) lastattr); in PHP_FUNCTION()
1049 xmlAttrPtr lastattr; in PHP_FUNCTION() local
1052 lastattr = xmlHasProp(parentp, child->name); in PHP_FUNCTION()
1054 lastattr = xmlHasNsProp(parentp, child->name, child->ns->href); in PHP_FUNCTION()
1055 if (lastattr != NULL && lastattr->type != XML_ATTRIBUTE_DECL) { in PHP_FUNCTION()
1056 if (lastattr != (xmlAttrPtr) child) { in PHP_FUNCTION()
1057 xmlUnlinkNode((xmlNodePtr) lastattr); in PHP_FUNCTION()
1058 php_libxml_node_free_resource((xmlNodePtr) lastattr); in PHP_FUNCTION()
1294 xmlAttrPtr lastattr; in PHP_FUNCTION() local
1297 lastattr = xmlHasProp(nodep, child->name); in PHP_FUNCTION()
1299 lastattr = xmlHasNsProp(nodep, child->name, child->ns->href); in PHP_FUNCTION()
1300 if (lastattr != NULL && lastattr->type != XML_ATTRIBUTE_DECL) { in PHP_FUNCTION()
1301 if (lastattr != (xmlAttrPtr) child) { in PHP_FUNCTION()
1302 xmlUnlinkNode((xmlNodePtr) lastattr); in PHP_FUNCTION()
1303 php_libxml_node_free_resource((xmlNodePtr) lastattr); in PHP_FUNCTION()