Lines Matching refs:parserCtxt
976 xmlParserCtxtPtr parserCtxt;
2067 (vctxt->parserCtxt != NULL) &&
2068 (vctxt->parserCtxt->input != NULL)) {
2069 file = vctxt->parserCtxt->input->filename;
2070 line = vctxt->parserCtxt->input->line;
2071 col = vctxt->parserCtxt->input->col;
2084 else if ((vctxt->parserCtxt != NULL) &&
2085 (vctxt->parserCtxt->input != NULL))
2086 file = vctxt->parserCtxt->input->filename;
10530 xmlParserCtxtPtr parserCtxt;
10532 parserCtxt = xmlNewParserCtxt();
10533 if (parserCtxt == NULL) {
10538 if ((pctxt->dict != NULL) && (parserCtxt->dict != NULL)) {
10543 xmlDictFree(parserCtxt->dict);
10544 parserCtxt->dict = pctxt->dict;
10545 xmlDictReference(parserCtxt->dict);
10549 doc = xmlCtxtReadFile(parserCtxt, (const char *) schemaLocation,
10553 doc = xmlCtxtReadMemory(parserCtxt, schemaBuffer, schemaBufferLen,
10594 xmlFreeParserCtxt(parserCtxt);
27241 xmlStopParser(vctxt->parserCtxt);
27266 xmlStopParser(vctxt->parserCtxt);
27321 ielem->nodeLine = xmlSAX2GetLineNumber(vctxt->parserCtxt);
27419 xmlStopParser(vctxt->parserCtxt);
27463 xmlStopParser(vctxt->parserCtxt);
28119 } else if ((vctxt->sax != NULL) && (vctxt->parserCtxt != NULL)) {
28123 ret = xmlParseDocument(vctxt->parserCtxt);
28818 ctxt->parserCtxt = pctxt;
28835 if ((ret == 0) && (! ctxt->parserCtxt->wellFormed)) {
28836 ret = ctxt->parserCtxt->errNo;
28842 ctxt->parserCtxt = NULL;
28902 return (ctxt->parserCtxt);