Home | History | Annotate | Download | only in libxml2

Lines Matching refs:includes

198     int nbIncludes;		/* number of includes in the array */
200 xmlNodePtr *includes; /* the array of includes */
607 ret->includes = NULL;
735 if (ctxt->includes == NULL) {
737 ctxt->includes = (xmlNodePtr *)
739 if (ctxt->includes == NULL) {
740 xmlSchematronPErrMemory(NULL, "allocating parser includes",
749 xmlRealloc(ctxt->includes, ctxt->maxIncludes * 4 *
752 xmlSchematronPErrMemory(NULL, "allocating parser includes",
756 ctxt->includes = tmp;
759 ctxt->includes[2 * ctxt->nbIncludes] = cur;
760 ctxt->includes[2 * ctxt->nbIncludes + 1] = (xmlNodePtr) doc;
782 doc = (xmlDocPtr) ctxt->includes[2 * ctxt->nbIncludes + 1];
783 ret = ctxt->includes[2 * ctxt->nbIncludes];