Lines Matching defs:is_static
74 * If "is_static" is set, then mark the python method as static.
79 static void print_method_def(bool is_static, const string &name)
83 if (is_static)
94 * If "is_static" is set, then mark the python method as static.
96 void python_generator::print_method_header(bool is_static, const string &name,
99 print_method_def(is_static, name);
394 if (!is_static(clazz, method))
537 print_method_header(is_static(clazz, method), cname,
603 bool is_static = generator::is_static(clazz, fd);
604 int first = is_static ? drop_ctx : 1;
628 if (is_static && !any(convert))
631 first = is_static ? drop_ctx : 0;
633 bool is_self = !is_static && i == 0;
687 print_method_def(is_static(clazz, any_method), cname);
714 print_method_header(is_static(clazz, fd), name, num_params - 1);