Home | History | Annotate | Download | only in policyrep

Lines Matching refs:swig_module

2656   swig_module_info *swig_module = (swig_module_info *) PyCapsule_GetPointer(obj, SWIGPY_CAPSULE_NAME);
2658 swig_module_info *swig_module = (swig_module_info *) vptr;
2660 swig_type_info **types = swig_module->types;
2662 for (i =0; i < swig_module->size; ++i) {
2674 SWIG_Python_SetModule(swig_module_info *swig_module) {
2683 PyObject *pointer = PyCapsule_New((void *) swig_module, SWIGPY_CAPSULE_NAME, SWIG_Python_DestroyModule);
2690 PyObject *pointer = PyCObject_FromVoidPtr((void *) swig_module, SWIG_Python_DestroyModule);
2720 swig_module_info *swig_module = SWIG_GetModule(0);
2721 descriptor = SWIG_TypeQueryModule(swig_module, swig_module, type);
2969 static swig_module_info swig_module = {swig_types, 52, 0, 0, 0, 0};
2970 #define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
2971 #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
16223 * swig_module, and does all the lookup, filling in the swig_module.types
16274 if (swig_module.next==0) {
16275 /* Initialize the swig_module */
16276 swig_module.type_initial = swig_type_initial;
16277 swig_module.cast_initial = swig_cast_initial;
16278 swig_module.next = &swig_module;
16289 SWIG_SetModule(clientdata, &swig_module);
16290 module_head = &swig_module;
16296 if (iter==&swig_module) {
16306 swig_module.next = module_head->next;
16307 module_head->next = &swig_module;
16316 /* Now work on filling in swig_module.types */
16318 printf("SWIG_InitializeModule: size %d\n", swig_module.size);
16320 for (i = 0; i < swig_module.size; ++i) {
16326 printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name);
16330 if (swig_module.next != &swig_module) {
16331 type = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, swig_module.type_initial[i]->name);
16338 if (swig_module.type_initial[i]->clientdata) {
16339 type->clientdata = swig_module.type_initial[i]->clientdata;
16345 type = swig_module.type_initial[i];
16349 cast = swig_module.cast_initial[i];
16356 if (swig_module.next != &swig_module) {
16357 ret = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, cast->type->name);
16363 if (type == swig_module.type_initial[i]) {
16392 swig_module.types[i] = type;
16394 swig_module.types[i] = 0;
16398 for (i = 0; i < swig_module.size; ++i) {
16400 swig_cast_info *cast = swig_module.cast_initial[i];
16401 printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name);
16427 for (i = 0; i < swig_module.size; i++) {
16428 if (swig_module.types[i]->clientdata) {
16429 equiv = swig_module.types[i]->cast;
16433 SWIG_TypeClientData(equiv->type, swig_module.types[i]->clientdata);
16771 static struct PyModuleDef SWIG_module = {
16840 m = PyModule_Create(&SWIG_module);