Lines Matching refs:children
55 cur = doc->children;
73 cur = cur->children;
90 cur = cur->children;
106 if ((attr->children != NULL) &&
107 (attr->children->type == XML_TEXT_NODE) &&
108 (attr->children->next == NULL)) {
109 value = attr->children->content;
181 cur = doc->children;
199 cur = cur->children;
219 if (cur->children == NULL)
221 cur = cur->children;
238 if ((attr->children != NULL) &&
239 (attr->children->type == XML_TEXT_NODE) &&
240 (attr->children->next == NULL)) {
241 value = attr->children->content;
273 if (head->children == NULL)
276 xmlAddPrevSibling(head->children, meta);
399 * Dump an HTML node, recursive behaviour,children are printed too.
442 * Dump an HTML node, recursive behaviour,children are printed too,
462 * Dump an HTML node, recursive behaviour,children are printed too.
514 * Dump an HTML node, recursive behaviour,children are printed too,
688 if ((cur->children != NULL) && (!htmlIsBooleanAttr(cur->name))) {
689 value = xmlNodeListGetString(doc, cur->children, 0);
751 * Dump an HTML node list, recursive behaviour,children are printed too.
773 * Dump an HTML node, recursive behaviour,children are printed too.
884 (cur->children == NULL)) {
919 if (cur->children != NULL) {
921 (cur->children->type != HTML_TEXT_NODE) &&
922 (cur->children->type != HTML_ENTITY_REF_NODE) &&
923 (cur->children != cur->last) &&
927 htmlNodeListDumpOutput(buf, doc, cur->children, encoding, format);
931 (cur->children != cur->last) &&
961 * Dump an HTML node, recursive behaviour,children are printed too,
997 if (cur->children != NULL) {
998 htmlNodeListDumpOutput(buf, cur, cur->children, encoding, format);