Home | History | Annotate | Download | only in libxml2

Lines Matching full:newpctxt

10149     xmlSchemaParserCtxtPtr newpctxt;
10170 newpctxt = xmlSchemaNewParserCtxtUseDict(
10172 if (newpctxt == NULL)
10174 newpctxt->constructor = pctxt->constructor;
10180 newpctxt->schema = schema;
10181 xmlSchemaSetParserErrors(newpctxt, pctxt->error, pctxt->warning,
10183 xmlSchemaSetParserStructuredErrors(newpctxt, pctxt->serror,
10185 newpctxt->counter = pctxt->counter;
10188 res = xmlSchemaParseNewDocWithContext(newpctxt, schema, bucket);
10193 pctxt->nberrors += newpctxt->nberrors;
10194 pctxt->counter = newpctxt->counter;
10195 newpctxt->constructor = NULL;
10197 xmlSchemaFreeParserCtxt(newpctxt);