Home | History | Annotate | Download | only in libxml2

Lines Matching refs:schema

3675  * defined in the DTD or schema.
4135 * @schema: a precompiled RelaxNG schema
4139 * if @schema is NULL, then RelaxNG validation is desactivated.
4140 @ The @schema should not be freed until the reader is deallocated
4147 xmlTextReaderRelaxNGSetSchema(xmlTextReaderPtr reader, xmlRelaxNGPtr schema) {
4150 if (schema == NULL) {
4175 reader->rngValidCtxt = xmlRelaxNGNewValidCtxt(schema);
4203 * Returns 0 in case the Schema validation could be (des)activated and
4252 * @schema: a precompiled Schema schema
4254 * Use XSD Schema to validate the document as it is processed.
4256 * if @schema is NULL, then Schema validation is desactivated.
4257 @ The @schema should not be freed until the reader is deallocated
4260 * Returns 0 in case the Schema validation could be (des)activated and
4264 xmlTextReaderSetSchema(xmlTextReaderPtr reader, xmlSchemaPtr schema) {
4267 if (schema == NULL) {
4300 reader->xsdValidCtxt = xmlSchemaNewValidCtxt(schema);
4339 * @rng: the path to a RelaxNG schema or NULL
4340 * @ctxt: the RelaxNG schema validation context or NULL
4387 /* Parse the schema and create validation environment. */
4442 * @xsd: the path to a W3C XSD schema or NULL
4443 * @ctxt: the XML Schema validation context or NULL
4446 * Validate the document as it is processed using XML Schema.
4448 * If both @xsd and @ctxt are NULL then XML Schema validation is deactivated.
4493 /* Parse the schema and create validation environment. */
4562 * @ctxt: the XML Schema validation context or NULL
4565 * Use W3C XSD schema context to validate the document as it is processed.
4567 * If @ctxt is NULL, then XML Schema validation is deactivated.
4583 * @xsd: the path to a W3C XSD schema or NULL
4585 * Use W3C XSD schema to validate the document as it is processed.
4587 * If @xsd is NULL, then XML Schema validation is deactivated.
4601 * @ctxt: the RelaxNG schema validation context or NULL
4604 * Use RelaxNG schema context to validate the document as it is processed.
4606 * If @ctxt is NULL, then RelaxNG schema validation is deactivated.
4622 * @rng: the path to a RelaxNG schema or NULL
4624 * Use RelaxNG schema to validate the document as it is processed.
4626 * If @rng is NULL, then RelaxNG schema validation is deactivated.