Home | History | Annotate | Download | only in libxml2

Lines Matching defs:constructor

295 #define WXS_CONSTRUCTOR(ctx) (ctx)->constructor
314 xmlSchemaAddItemSize(&((ctx)->constructor->pending), 10, item)
604 xmlSchemaConstructionCtxtPtr constructor;
3584 "no main schema on constructor");
10066 list = pctxt->constructor->buckets;
10089 list = pctxt->constructor->buckets;
10118 list = pctxt->constructor->buckets;
10144 xmlSchemaBucketPtr oldbucket = pctxt->constructor->bucket;
10224 if (pctxt->constructor == NULL) {
10226 "no constructor");
10234 newpctxt->constructor = pctxt->constructor;
10255 newpctxt->constructor = NULL;
10368 (pctxt->constructor->bucket == bkt)) {
10384 xmlSchemaSchemaRelationAddChild(pctxt->constructor->bucket,
12571 if (ctxt->ownsConstructor && (ctxt->constructor != NULL)) {
12572 xmlSchemaConstructionCtxtFree(ctxt->constructor);
12573 ctxt->constructor = NULL;
20864 xmlSchemaConstructionCtxtPtr con = pctxt->constructor;
20879 * on the constructor, we'll assure here that the constructor has
21306 * Reset the constructor. This is needed for XSI acquisition, since
21359 * Create the schema constructor.
21361 if (ctxt->constructor == NULL) {
21362 ctxt->constructor = xmlSchemaConstructionCtxtCreate(ctxt->dict);
21363 if (ctxt->constructor == NULL)
21365 /* Take ownership of the constructor to be able to free it. */
21368 ctxt->constructor->mainSchema = mainSchema;
21418 if (ctxt->constructor) {
21419 xmlSchemaConstructionCtxtFree(ctxt->constructor);
21420 ctxt->constructor = NULL;
21435 if (ctxt->constructor) {
21436 xmlSchemaConstructionCtxtFree(ctxt->constructor);
21437 ctxt->constructor = NULL;
21650 if (pctxt->constructor == NULL) {
21652 "no constructor");
28137 pctxt->constructor = xmlSchemaConstructionCtxtCreate(pctxt->dict);
28138 if (pctxt->constructor == NULL)
28140 pctxt->constructor->mainSchema = vctxt->schema;
28142 * Take ownership of the constructor to be able to free it.