Home | History | Annotate | Download | only in libxml2

Lines Matching full:tmp2

1519     xmlNodePtr tmp, tmp2;
1533 tmp2 = tmp->next;
1573 tmp = tmp2;
3690 xmlRelaxNGDefinePtr tmp2, last = NULL;
3704 tmp2 = xmlRelaxNGParsePattern(ctxt, child);
3705 if (tmp2 != NULL) {
3707 except->content = last = tmp2;
3709 last->next = tmp2;
3710 last = tmp2;
5621 xmlRelaxNGDefinePtr cur, last, tmp, tmp2;
5685 tmp2 = xmlRelaxNGNewDefine(ctxt, tmp->content->node);
5686 if (tmp2 == NULL)
5688 tmp2->type = XML_RELAXNG_GROUP;
5689 tmp2->content = tmp->content;
5691 tmp2 = tmp->content;
5694 cur->content = tmp2;
5696 last->next = tmp2;
5698 last = tmp2;