Lines Matching defs:model
517 conv_content_model(XML_Content * const model,
521 PyObject *children = PyTuple_New(model->numchildren);
525 assert(model->numchildren < INT_MAX);
526 for (i = 0; i < (int)model->numchildren; ++i) {
527 PyObject *child = conv_content_model(&model->children[i],
536 model->type, model->quant,
537 conv_string,model->name, children);
545 XML_Content *model)
559 modelobj = conv_content_model(model, (conv_string_to_unicode));
587 XML_FreeContentModel(self->itself, model);
1824 PyObject *model_module = add_submodule(mod, MODULE_NAME ".model");
1837 "Constants used to interpret content model information.") < 0) {