Home | History | Annotate | Download | only in libxml2

Lines Matching defs:patterns

13  *        - the semantic of libxml2 patterns vs. XSLT production referenced
142 int nbPattern; /* the number of patterns */
143 xmlSchematronPatternPtr patterns;/* the patterns found */
498 if (schema->patterns == NULL) {
499 schema->patterns = ret;
501 xmlSchematronPatternPtr prev = schema->patterns;
512 * @patterns: a list of patterns
514 * Free a list of patterns.
517 xmlSchematronFreePatterns(xmlSchematronPatternPtr patterns) {
520 while (patterns != NULL) {
521 next = patterns->next;
522 if (patterns->name != NULL)
523 xmlFree(patterns->name);
524 xmlFree(patterns);
525 patterns = next;
573 xmlSchematronFreePatterns(schema->patterns);
1707 pattern = ctxt->schema->patterns;