Lines Matching refs:nextp
1403 xmlNodePtr child, nextp, newnextp; in dom_normalize() local
1411 nextp = child->next; in dom_normalize()
1412 while (nextp != NULL) { in dom_normalize()
1413 if (nextp->type == XML_TEXT_NODE) { in dom_normalize()
1414 newnextp = nextp->next; in dom_normalize()
1415 strContent = xmlNodeGetContent(nextp); in dom_normalize()
1418 xmlUnlinkNode(nextp); in dom_normalize()
1419 php_libxml_node_free_resource(nextp); in dom_normalize()
1420 nextp = newnextp; in dom_normalize()
1426 nextp = child->next; in dom_normalize()
1429 child = nextp; in dom_normalize()