Lines Matching full:child
863 * @no: the child number
865 * Returns the @n'th element child of @cur or NULL
2268 xmlNodePtr child = node->children;
2271 while (child != NULL) {
2272 if ((child->type == XML_ELEMENT_NODE) &&
2273 (child->ns != NULL) &&
2274 ((xmlStrEqual(child->ns->href, XINCLUDE_NS)) ||
2275 (xmlStrEqual(child->ns->href, XINCLUDE_OLD_NS)))) {
2276 if (xmlStrEqual(child->name, XINCLUDE_NODE)) {
2279 "%s has an 'include' child\n",
2283 if (xmlStrEqual(child->name, XINCLUDE_FALLBACK)) {
2287 child = child->next;
2306 "%s is not the child of an 'include'\n",