Lines Matching defs:child
1033 xmlNodePtr child, next;
1036 for (child = top->xmlChildrenNode; child != NULL; child = next) {
1037 next = child->next;
1038 if (child->name == NULL)
1040 if (xmlStrcmp(child->name, DTD_ELEM_COMMENT) == 0) {
1041 next = child->next;
1042 xmlUnlinkNode(child);
1043 xmlFreeNode(child);
8630 /* child process */