Lines Matching refs:argcount
831 ret_void(int argcount UNUSED, type_T **argtypes UNUSED) in ret_void()
836 ret_any(int argcount UNUSED, type_T **argtypes UNUSED) in ret_any()
841 ret_bool(int argcount UNUSED, type_T **argtypes UNUSED) in ret_bool()
846 ret_number_bool(int argcount UNUSED, type_T **argtypes UNUSED) in ret_number_bool()
851 ret_number(int argcount UNUSED, type_T **argtypes UNUSED) in ret_number()
856 ret_float(int argcount UNUSED, type_T **argtypes UNUSED) in ret_float()
861 ret_string(int argcount UNUSED, type_T **argtypes UNUSED) in ret_string()
866 ret_list_any(int argcount UNUSED, type_T **argtypes UNUSED) in ret_list_any()
871 ret_list_number(int argcount UNUSED, type_T **argtypes UNUSED) in ret_list_number()
876 ret_list_string(int argcount UNUSED, type_T **argtypes UNUSED) in ret_list_string()
881 ret_list_dict_any(int argcount UNUSED, type_T **argtypes UNUSED) in ret_list_dict_any()
886 ret_list_items(int argcount UNUSED, type_T **argtypes UNUSED) in ret_list_items()
892 ret_list_string_items(int argcount UNUSED, type_T **argtypes UNUSED) in ret_list_string_items()
897 ret_dict_any(int argcount UNUSED, type_T **argtypes UNUSED) in ret_dict_any()
902 ret_job_info(int argcount, type_T **argtypes UNUSED) in ret_job_info() argument
904 if (argcount == 0) in ret_job_info()
909 ret_dict_number(int argcount UNUSED, type_T **argtypes UNUSED) in ret_dict_number()
914 ret_dict_string(int argcount UNUSED, type_T **argtypes UNUSED) in ret_dict_string()
919 ret_blob(int argcount UNUSED, type_T **argtypes UNUSED) in ret_blob()
924 ret_func_any(int argcount UNUSED, type_T **argtypes UNUSED) in ret_func_any()
929 ret_channel(int argcount UNUSED, type_T **argtypes UNUSED) in ret_channel()
934 ret_job(int argcount UNUSED, type_T **argtypes UNUSED) in ret_job()
939 ret_first_arg(int argcount, type_T **argtypes) in ret_first_arg() argument
941 if (argcount > 0) in ret_first_arg()
946 ret_repeat(int argcount, type_T **argtypes) in ret_repeat() argument
948 if (argcount == 0) in ret_repeat()
956 ret_first_cont(int argcount, type_T **argtypes) in ret_first_cont() argument
958 if (argcount > 0) in ret_first_cont()
975 ret_list_or_dict_0(int argcount, type_T **argtypes UNUSED) in ret_list_or_dict_0() argument
977 if (argcount > 0) in ret_list_or_dict_0()
987 ret_list_or_dict_1(int argcount, type_T **argtypes UNUSED) in ret_list_or_dict_1() argument
989 if (argcount > 1) in ret_list_or_dict_1()
995 ret_argv(int argcount, type_T **argtypes UNUSED) in ret_argv() argument
998 if (argcount == 0) in ret_argv()
1006 ret_remove(int argcount, type_T **argtypes) in ret_remove() argument
1008 if (argcount > 0) in ret_remove()
1020 ret_getreg(int argcount, type_T **argtypes UNUSED) in ret_getreg() argument
1023 if (argcount == 3) in ret_getreg()
1029 ret_maparg(int argcount, type_T **argtypes UNUSED) in ret_maparg() argument
1032 if (argcount == 4) in ret_maparg()
1037 static type_T *ret_f_function(int argcount, type_T **argtypes);
1050 type_T *(*f_retfunc)(int argcount, type_T **argtypes);
2438 int argcount, in internal_func_check_arg_types() argument
2448 context.arg_count = argcount; in internal_func_check_arg_types()
2451 for (i = 0; i < argcount; ++i) in internal_func_check_arg_types()
2468 internal_func_get_argcount(int idx, int *argcount, int *min_argcount) in internal_func_get_argcount() argument
2470 *argcount = global_functions[idx].f_max_argc; in internal_func_get_argcount()
2481 internal_func_ret_type(int idx, int argcount, type_T **argtypes) in internal_func_ret_type() argument
2483 return global_functions[idx].f_retfunc(argcount, argtypes); in internal_func_ret_type()
2502 check_internal_func(int idx, int argcount) in check_internal_func() argument
2507 if (argcount < global_functions[idx].f_min_argc) in check_internal_func()
2509 else if (argcount > global_functions[idx].f_max_argc) in check_internal_func()
2525 int argcount, in call_internal_func() argument
2534 if (argcount < global_functions[i].f_min_argc) in call_internal_func()
2536 if (argcount > global_functions[i].f_max_argc) in call_internal_func()
2538 argvars[argcount].v_type = VAR_UNKNOWN; in call_internal_func()
2558 int argcount, in call_internal_method() argument
2572 if (argcount + 1 < global_functions[fi].f_min_argc) in call_internal_method()
2574 if (argcount + 1 > global_functions[fi].f_max_argc) in call_internal_method()
2580 for (i = 0; i < argcount; ++i) in call_internal_method()
2582 argv[argcount] = *basetv; in call_internal_method()
2589 for (i = 1; i < argcount; ++i) in call_internal_method()
2598 for (i = 2; i < argcount; ++i) in call_internal_method()
2608 for (i = 3; i < argcount; ++i) in call_internal_method()
2615 for (i = 0; i < argcount; ++i) in call_internal_method()
2618 argv[argcount + 1].v_type = VAR_UNKNOWN; in call_internal_method()
4143 ret_f_function(int argcount, type_T **argtypes) in ret_f_function() argument
4145 if (argcount == 1 && argtypes[0]->tt_type == VAR_STRING) in ret_f_function()