Lines Matching refs:c_str

86 	s = name.c_str();  in print_method_def()
135 printf(".__class__ is %s:\n", type.c_str()); in print_type_check()
138 printf(" = %s(", type.c_str()); in print_type_check()
144 type2python(super).c_str()); in print_type_check()
146 printf(").%s(", name.c_str()); in print_type_check()
194 printf("isl.%s_copy", type_s.c_str()); in print_copy()
244 i, arg_type.c_str()); in print_callback()
349 printf(", '%s') and ", callback_name.c_str()); in print_persistent_callback_failure_check()
351 printf(".%s['exc_info'] != None:\n", callback_name.c_str()); in print_persistent_callback_failure_check()
354 printf(".%s['exc_info'][0]\n", callback_name.c_str()); in print_persistent_callback_failure_check()
357 printf(".%s['exc_info'][0] = None\n", callback_name.c_str()); in print_persistent_callback_failure_check()
401 "obj = %s(ctx=ctx, ptr=res)\n", type.c_str()); in print_method_return()
411 callback_name.c_str()); in print_method_return()
451 printf(" return arg0.%s(", name.c_str()); in print_get_method()
481 print_indent(indent, "res = isl.%s(", fullname.c_str()); in print_method_call()
563 printf("args[%d].__class__ is %s", i, type_str.c_str()); in print_argument_check()
701 printf(" res = isl.%s(", fullname.c_str()); in print_set_enum()
746 printf(" self.ptr = isl.%s(", fullname.c_str()); in print_constructor()
773 type2python(i->second).c_str()); in print_upcast_constructors()
776 clazz.name.c_str()); in print_upcast_constructors()
790 printf("class %s", name.c_str()); in print_class_header()
796 printf("%s", type2python(super[i]).c_str()); in print_class_header()
800 printf("(%s)", type2python(clazz.superclass_name).c_str()); in print_class_header()
821 printf("isl.%s.restype = c_void_p\n", fullname.c_str()); in print_restype()
823 printf("isl.%s.restype = POINTER(c_char)\n", fullname.c_str()); in print_restype()
834 printf("isl.%s.argtypes = [", fullname.c_str()); in print_argtypes()
886 clazz.fn_type->getNameAsString().c_str()); in print_new()
892 type2python(i->second).c_str()); in print_new()
898 python_name.c_str()); in print_new()
925 string(clazz.fn_to_str->getName()).c_str()); in print_representation()
933 python_name.c_str()); in print_representation()
936 python_name.c_str()); in print_representation()
956 callback_name.c_str()); in print_copy_callbacks()
958 callback_name.c_str(), callback_name.c_str()); in print_copy_callbacks()
1048 printf(" isl.%s_free(self.ptr)\n", clazz.name.c_str()); in print()