Lines Matching refs:namespaces
147 const xmlChar **namespaces; /* the array of namespaces */ member
198 const xmlChar **namespaces; /* the array of namespaces */ member
406 ctxt->namespaces); in xmlSchematronAddRule()
571 if (schema->namespaces != NULL) in xmlSchematronFree()
572 xmlFree((char **) schema->namespaces); in xmlSchematronFree()
718 if (ctxt->namespaces != NULL) in xmlSchematronFreeParserCtxt()
719 xmlFree((char **) ctxt->namespaces); in xmlSchematronFreeParserCtxt()
807 if (ctxt->namespaces == NULL) { in xmlSchematronAddNamespace()
809 ctxt->namespaces = (const xmlChar **) in xmlSchematronAddNamespace()
811 if (ctxt->namespaces == NULL) { in xmlSchematronAddNamespace()
821 xmlRealloc((xmlChar **) ctxt->namespaces, ctxt->maxNamespaces * 4 * in xmlSchematronAddNamespace()
828 ctxt->namespaces = tmp; in xmlSchematronAddNamespace()
831 ctxt->namespaces[2 * ctxt->nbNamespaces] = in xmlSchematronAddNamespace()
833 ctxt->namespaces[2 * ctxt->nbNamespaces + 1] = in xmlSchematronAddNamespace()
836 ctxt->namespaces[2 * ctxt->nbNamespaces] = NULL; in xmlSchematronAddNamespace()
837 ctxt->namespaces[2 * ctxt->nbNamespaces + 1] = NULL; in xmlSchematronAddNamespace()
1228 ret->namespaces = ctxt->namespaces; in xmlSchematronParse()
1230 ctxt->namespaces = NULL; in xmlSchematronParse()
1528 if ((schema->namespaces[2 * i] == NULL) || in xmlSchematronNewValidCtxt()
1529 (schema->namespaces[2 * i + 1] == NULL)) in xmlSchematronNewValidCtxt()
1531 xmlXPathRegisterNs(ret->xctxt, schema->namespaces[2 * i + 1], in xmlSchematronNewValidCtxt()
1532 schema->namespaces[2 * i]); in xmlSchematronNewValidCtxt()