Lines Matching refs:xsd
4256 * @xsd: the path to a W3C XSD schema or NULL
4262 * If both @xsd and @ctxt are NULL then XML Schema validation is deactivated.
4269 const char *xsd,
4276 if ((xsd != NULL) && (ctxt != NULL))
4279 if (((xsd != NULL) || (ctxt != NULL)) &&
4300 if ((xsd == NULL) && (ctxt == NULL)) {
4305 if (xsd != NULL) {
4308 pctxt = xmlSchemaNewParserCtxt(xsd);
4394 * @xsd: the path to a W3C XSD schema or NULL
4398 * If @xsd is NULL, then XML Schema validation is deactivated.
4404 xmlTextReaderSchemaValidate(xmlTextReaderPtr reader, const char *xsd)
4406 return(xmlTextReaderSchemaValidateInternal(reader, xsd, NULL, 0));