Lines Matching refs:child
346 * 1: adding a xml child node.
365 xmlNodePtr child = NULL;
398 child = node;
401 case 1: /* child element */
402 child = xmlNewChild(node, NULL, name, value);
405 child = xmlNewNode(NULL, name);
406 if (child != NULL &&
407 xmlAddPrevSibling(node, child) == NULL) {
408 xmlFreeNode(child);
411 node = child;
418 child = node;
422 child = node;
430 return (child);
1048 /* add it with the apporiate child order */
1110 xmlNodePtr node, child;
1162 /* set the child */
1163 child = node->children;
1164 if (child == NULL) {
1178 /* make a child node */
1186 while (child) {
1187 if (child->type == XML_ELEMENT_NODE) {
1188 k = get_index_by_name(child->name);
1193 if (!convert_attr2xml(child,
1202 if (!convert_attr2xml(child,
1211 child = child->next;
1213 if (child == NULL) {
1214 /* make a child node */