• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/

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;
177 cur = doc->children;
195 cur = cur->children;
212 if (cur->children == NULL) {
221 cur = cur->children;
249 if ((attr->children != NULL) &&
250 (attr->children->type == XML_TEXT_NODE) &&
251 (attr->children->next == NULL)) {
252 value = attr->children->content;
390 * Dump an HTML node, recursive behaviour,children are printed too.
433 * Dump an HTML node, recursive behaviour,children are printed too,
453 * Dump an HTML node, recursive behaviour,children are printed too.
505 * Dump an HTML node, recursive behaviour,children are printed too,
681 if ((cur->children != NULL) && (!htmlIsBooleanAttr(cur->name))) {
682 value = xmlNodeListGetString(doc, cur->children, 0);
744 * Dump an HTML node list, recursive behaviour,children are printed too.
766 * Dump an HTML node, recursive behaviour,children are printed too.
877 (cur->children == NULL)) {
912 if (cur->children != NULL) {
914 (cur->children->type != HTML_TEXT_NODE) &&
915 (cur->children->type != HTML_ENTITY_REF_NODE) &&
916 (cur->children != cur->last) &&
920 htmlNodeListDumpOutput(buf, doc, cur->children, encoding, format);
924 (cur->children != cur->last) &&
954 * Dump an HTML node, recursive behaviour,children are printed too,
990 if (cur->children != NULL) {
991 htmlNodeListDumpOutput(buf, cur, cur->children, encoding, format);