Home | History | Annotate | Download | only in libxml2

Lines Matching defs:ctxt

81 		xmlSchemaParserCtxtPtr ctxt;
97 ctxt = xmlSchemaNewMemParserCtxt((char *)base,info.st_size);
99 xmlSchemaSetParserErrors(ctxt,
103 schema = xmlSchemaParse(ctxt);
104 xmlSchemaFreeParserCtxt(ctxt);
109 ctxt = xmlSchemaNewParserCtxt(argv[i]);
110 xmlSchemaSetParserErrors(ctxt,
114 schema = xmlSchemaParse(ctxt);
115 xmlSchemaFreeParserCtxt(ctxt);
133 xmlSchemaValidCtxtPtr ctxt;
136 ctxt = xmlSchemaNewValidCtxt(schema);
137 xmlSchemaSetValidErrors(ctxt,
141 ret = xmlSchemaValidateDoc(ctxt, doc);
150 xmlSchemaFreeValidCtxt(ctxt);