Home | History | Annotate | Download | only in libxml2

Lines Matching full:report

81  * A Schematrons test, either an assert or a report
91 xmlChar *report; /* the message to report */
108 xmlChar *report; /* the message to report */
298 * @report: the associated report string
308 xmlNodePtr node, xmlChar *test, xmlChar *report)
339 ret->report = report;
369 if (tests->report != NULL)
370 xmlFree(tests->report);
382 * @report: the associated report string
391 xmlChar *context, xmlChar *report)
421 ret->report = report;
463 if (rules->report != NULL)
464 xmlFree(rules->report);
855 xmlChar *report;
903 report = xmlNodeGetContent(cur);
906 ruleptr, cur, test, report);
910 } else if (IS_SCHEMATRON(cur, "report")) {
926 report = xmlNodeGetContent(cur);
929 ruleptr, cur, test, report);
936 "Expecting an assert or a report element instead of %s",
945 "rule has no assert nor report element", NULL, NULL);
1269 * Output part of the report to whatever channel the user selected
1287 * Returns a report string or NULL in case of error. The string needs
1364 * called from the validation engine when an assert or report test have
1372 /* if quiet and not SVRL report only failures */
1383 const xmlChar *report = NULL;
1393 if ((test->report != NULL) && (test->report[0] != 0))
1394 report = test->report;
1397 report = xmlSchematronFormatReport(ctxt, test->node, cur);
1398 if (report == NULL) {
1400 report = xmlStrdup((const xmlChar *) "node failed assert");
1402 report = xmlStrdup((const xmlChar *) "node failed report");
1406 line, (const char *) report);
1427 (const char *) report, 0, 0,
1433 xmlFree((char *) report);