Home | History | Annotate | Download | only in libxml2

Lines Matching refs:constructor

289 #define WXS_CONSTRUCTOR(ctx) (ctx)->constructor
308 xmlSchemaAddItemSize(&((ctx)->constructor->pending), 10, item)
596 xmlSchemaConstructionCtxtPtr constructor;
3535 "no main schema on constructor");
10006 list = pctxt->constructor->buckets;
10029 list = pctxt->constructor->buckets;
10058 list = pctxt->constructor->buckets;
10084 xmlSchemaBucketPtr oldbucket = pctxt->constructor->bucket;
10164 if (pctxt->constructor == NULL) {
10166 "no constructor");
10174 newpctxt->constructor = pctxt->constructor;
10195 newpctxt->constructor = NULL;
10308 (pctxt->constructor->bucket == bkt)) {
10324 xmlSchemaSchemaRelationAddChild(pctxt->constructor->bucket,
12498 if (ctxt->ownsConstructor && (ctxt->constructor != NULL)) {
12499 xmlSchemaConstructionCtxtFree(ctxt->constructor);
12500 ctxt->constructor = NULL;
20725 xmlSchemaConstructionCtxtPtr con = pctxt->constructor;
20740 * on the constructor, we'll assure here that the constructor has
21167 * Reset the constructor. This is needed for XSI acquisition, since
21221 * Create the schema constructor.
21223 if (ctxt->constructor == NULL) {
21224 ctxt->constructor = xmlSchemaConstructionCtxtCreate(ctxt->dict);
21225 if (ctxt->constructor == NULL)
21227 /* Take ownership of the constructor to be able to free it. */
21230 ctxt->constructor->mainSchema = mainSchema;
21280 if (ctxt->constructor) {
21281 xmlSchemaConstructionCtxtFree(ctxt->constructor);
21282 ctxt->constructor = NULL;
21297 if (ctxt->constructor) {
21298 xmlSchemaConstructionCtxtFree(ctxt->constructor);
21299 ctxt->constructor = NULL;
21512 if (pctxt->constructor == NULL) {
21514 "no constructor");
27913 pctxt->constructor = xmlSchemaConstructionCtxtCreate(pctxt->dict);
27914 if (pctxt->constructor == NULL)
27916 pctxt->constructor->mainSchema = vctxt->schema;
27918 * Take ownership of the constructor to be able to free it.