Lines Matching full:child
337 xmlNodePtr seq; /* the current child */
2184 snprintf(msg, 1000, "Datatype element %s has child elements\n",
2188 snprintf(msg, 1000, "Value element %s has child elements\n",
2192 snprintf(msg, 1000, "List element %s has child elements\n",
2222 * @child: the node child generating the problem.
2231 xmlNodePtr child, const xmlChar * arg1,
2248 xmlRngVErr(ctxt, (child == NULL ? node : child), err,
3689 xmlNodePtr child;
3697 child = content->children;
3699 if (child == NULL) {
3703 while (child != NULL) {
3704 tmp2 = xmlRelaxNGParsePattern(ctxt, child);
3713 child = child->next;
4308 xmlGenericError(xmlGenericErrorContext, " %d child\n", nbchild);
4448 xmlNodePtr child;
4470 child = node->children;
4471 if (child == NULL) {
4475 while (child != NULL) {
4476 if (IS_RELAXNG(child, "element")) {
4477 cur = xmlRelaxNGParseElement(ctxt, child);
4479 cur = xmlRelaxNGParsePattern(ctxt, child);
4490 child = child->next;
4731 "empty: had a child node\n", NULL, NULL);
4740 "text: had a child node\n", NULL, NULL);
5015 xmlNodePtr child;
5023 child = node->children;
5024 if (child == NULL) {
5032 cur = xmlRelaxNGParseNameClass(ctxt, child, ret);
5034 child = child->next;
5036 if (child != NULL) {
5037 cur = xmlRelaxNGParsePattern(ctxt, child);
5075 child = child->next;
5077 if (child != NULL) {
5100 xmlNodePtr child;
5122 child = node->children;
5123 while (child != NULL) {
5124 cur = xmlRelaxNGNewDefine(ctxt, child);
5132 if (xmlRelaxNGParseNameClass(ctxt, child, cur) != NULL) {
5140 child = child->next;
5239 xmlNodePtr child;
5253 child = node->children;
5254 while (child != NULL) {
5255 tmp = xmlRelaxNGParseNameClass(ctxt, child, ret);
5264 child = child->next;
5300 xmlNodePtr child;
5308 child = node->children;
5309 if (child == NULL) {
5315 cur = xmlRelaxNGParseNameClass(ctxt, child, ret);
5317 child = child->next;
5319 if (child == NULL) {
5328 while (child != NULL) {
5329 cur = xmlRelaxNGParsePattern(ctxt, child);
5393 child = child->next;
5546 "grammar has unexpected child %s\n", nodes->name,
6196 * reset since in the simple form elements are only child
7200 xmlNodePtr child, ins, tmp;
7208 child = cur->children;
7210 while (child != NULL) {
7212 if (!xmlHasProp(child, BAD_CAST "ns")) {
7213 xmlSetProp(child, BAD_CAST "ns", ns);
7216 tmp = child->next;
7217 xmlUnlinkNode(child);
7218 ins = xmlAddNextSibling(ins, child);
7219 child = tmp;
9535 * errors about. I.e. a state with no element left in the child list
10252 xmlNodePtr child;
10255 child = node;
10256 while (child != NULL) {
10257 if (child->type == XML_ELEMENT_NODE) {
10262 } else if ((child->type == XML_TEXT_NODE) ||
10263 (child->type == XML_CDATA_SECTION_NODE)) {
10264 content = xmlStrcat(content, child->content);
10267 child = child->next;
10296 xmlNodePtr child;
10298 child = node;
10299 while (child != NULL) {
10300 if (child->type == XML_ELEMENT_NODE) {
10305 } else if ((child->type == XML_TEXT_NODE) ||
10306 (child->type == XML_CDATA_SECTION_NODE)) {
10307 content = xmlStrcat(content, child->content);
10310 child = child->next;
10340 xmlNodePtr child;
10349 child = node;
10350 while (child != NULL) {
10351 if (child->type == XML_ELEMENT_NODE) {
10356 } else if ((child->type == XML_TEXT_NODE) ||
10357 (child->type == XML_CDATA_SECTION_NODE)) {
10358 content = xmlStrcat(content, child->content);
10361 child = child->next;