Home | History | Annotate | Download | only in 2.0.11

Lines Matching refs:swig_module

10  * swig_module, and does all the lookup, filling in the swig_module.types
61 if (swig_module.next==0) {
62 /* Initialize the swig_module */
63 swig_module.type_initial = swig_type_initial;
64 swig_module.cast_initial = swig_cast_initial;
65 swig_module.next = &swig_module;
76 SWIG_SetModule(clientdata, &swig_module);
77 module_head = &swig_module;
83 if (iter==&swig_module) {
93 swig_module.next = module_head->next;
94 module_head->next = &swig_module;
103 /* Now work on filling in swig_module.types */
105 printf("SWIG_InitializeModule: size %d\n", swig_module.size);
107 for (i = 0; i < swig_module.size; ++i) {
113 printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name);
117 if (swig_module.next != &swig_module) {
118 type = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, swig_module.type_initial[i]->name);
125 if (swig_module.type_initial[i]->clientdata) {
126 type->clientdata = swig_module.type_initial[i]->clientdata;
132 type = swig_module.type_initial[i];
136 cast = swig_module.cast_initial[i];
144 if (swig_module.next != &swig_module) {
145 ret = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, cast->type->name);
151 if (type == swig_module.type_initial[i]) {
180 swig_module.types[i] = type;
182 swig_module.types[i] = 0;
186 for (i = 0; i < swig_module.size; ++i) {
188 swig_cast_info *cast = swig_module.cast_initial[i];
189 printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name);
215 for (i = 0; i < swig_module.size; i++) {
216 if (swig_module.types[i]->clientdata) {
217 equiv = swig_module.types[i]->cast;
221 SWIG_TypeClientData(equiv->type, swig_module.types[i]->clientdata);