Home | History | Annotate | Download | only in libxml2

Lines Matching full:child

1057 	    xmlNodePtr child = cur->children;
1059 while (child != NULL) {
1063 xhtmlNodeDumpOutput(ctxt, child);
1066 xmlNodeDumpOutputInternal(ctxt, child);
1068 child = child->next;
1530 xmlNodePtr child = cur->children;
1532 while (child != NULL) {
1533 if (child->type == XML_TEXT_NODE) {
1534 if ((xmlStrchr(child->content, '<') == NULL) &&
1535 (xmlStrchr(child->content, '&') == NULL) &&
1536 (xmlStrstr(child->content, BAD_CAST "]]>") == NULL)) {
1544 xmlOutputBufferWriteString(buf, (const char *) child->content);
1553 start = end = child->content;
1580 xhtmlNodeDumpOutput(ctxt, child);
1584 child = child->next;