Lines Matching defs:children

431     xmlNodePtr children;
433 children = attr->children;
434 while (children != NULL) {
435 switch (children->type) {
438 attr, children->content);
442 xmlBufferAdd(buf->buffer, children->name,
443 xmlStrlen(children->name));
450 children = children->next;
547 * Dump the notations first they are not in the DTD children list
560 xmlNodeListDumpOutput(ctxt, dtd->children);
616 * Dump an XML node list, recursive behaviour, children are printed too.
645 * Dump an XML node, recursive behaviour, children are printed too.
670 xmlNodeListDumpOutput(ctxt, cur->children);
764 tmp = cur->children;
788 (cur->children == NULL) && ((ctxt->options & XML_SAVE_NO_EMPTY) == 0)) {
797 if (cur->children != NULL) {
800 xmlNodeListDumpOutput(ctxt, cur->children);
919 if (cur->children != NULL) {
920 xmlNodePtr child = cur->children;
980 if (node->children != NULL)
1063 ((cur->children == NULL) ||
1064 (cur->children->content == NULL) ||
1065 (cur->children->content[0] == 0)) &&
1067 if (cur->children != NULL)
1068 xmlFreeNode(cur->children);
1069 cur->children = xmlNewText(cur->name);
1070 if (cur->children != NULL)
1071 cur->children->parent = (xmlNodePtr) cur;
1119 * Dump an XML node list, recursive behaviour, children are printed too.
1153 * Dump an XHTML node, recursive behaviour, children are printed too.
1177 xhtmlNodeListDumpOutput(ctxt, cur->children);
1264 tmp = cur->children;
1300 tmp = cur->children;
1320 if ((cur->type == XML_ELEMENT_NODE) && (cur->children == NULL)) {
1398 xmlNodePtr child = cur->children;
1457 if (cur->children != NULL) {
1463 xhtmlNodeListDumpOutput(ctxt, cur->children);
1871 * Dump an XML node, recursive behaviour,children are printed too.
1927 * Dump an XML/HTML node, recursive behaviour, children are printed too.
1979 * Dump an XML node, recursive behaviour, children are printed too.