Lines Matching refs:nextp
1319 xmlNodePtr child, nextp, newnextp; in dom_normalize() local
1327 nextp = child->next; in dom_normalize()
1328 while (nextp != NULL) { in dom_normalize()
1329 if (nextp->type == XML_TEXT_NODE) { in dom_normalize()
1330 newnextp = nextp->next; in dom_normalize()
1331 strContent = xmlNodeGetContent(nextp); in dom_normalize()
1334 xmlUnlinkNode(nextp); in dom_normalize()
1335 php_libxml_node_free_resource(nextp); in dom_normalize()
1336 nextp = newnextp; in dom_normalize()
1342 nextp = child->next; in dom_normalize()
1345 child = nextp; in dom_normalize()