Lines Matching refs:xsd
4138 * Use XSD
4298 * @xsd: the path to a W3C XSD schema or NULL
4304 * If both @xsd and @ctxt are NULL then XML Schema validation is deactivated.
4311 const char *xsd,
4318 if ((xsd != NULL) && (ctxt != NULL))
4321 if (((xsd != NULL) || (ctxt != NULL)) &&
4342 if ((xsd == NULL) && (ctxt == NULL)) {
4347 if (xsd != NULL) {
4350 pctxt = xmlSchemaNewParserCtxt(xsd);
4418 * Use W3C XSD schema context to validate the document as it is processed.
4436 * @xsd: the path to a W3C XSD schema or NULL
4438 * Use W3C XSD schema to validate the document as it is processed.
4440 * If @xsd is NULL, then XML Schema validation is deactivated.
4446 xmlTextReaderSchemaValidate(xmlTextReaderPtr reader, const char *xsd)
4448 return(xmlTextReaderSchemaValidateInternal(reader, xsd, NULL, 0));