Lines Matching full:patterns
13 * - the semantic of libxml2 patterns vs. XSLT production referenced
142 int nbPattern; /* the number of patterns */
143 xmlSchematronPatternPtr patterns;/* the patterns found */
500 if (schema->patterns == NULL) {
501 schema->patterns = ret;
503 xmlSchematronPatternPtr prev = schema->patterns;
514 * @patterns: a list of patterns
516 * Free a list of patterns.
519 xmlSchematronFreePatterns(xmlSchematronPatternPtr patterns) {
522 while (patterns != NULL) {
523 next = patterns->next;
524 if (patterns->name != NULL)
525 xmlFree(patterns->name);
526 xmlFree(patterns);
527 patterns = next;
575 xmlSchematronFreePatterns(schema->patterns);
1709 pattern = ctxt->schema->patterns;