Lines Matching refs:argtypes

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()
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
942 return argtypes[0]; in ret_first_arg()
946 ret_repeat(int argcount, type_T **argtypes) in ret_repeat() argument
950 if (argtypes[0] == &t_number) in ret_repeat()
952 return argtypes[0]; in ret_repeat()
956 ret_first_cont(int argcount, type_T **argtypes) in ret_first_cont() argument
960 if (argtypes[0]->tt_type == VAR_LIST) in ret_first_cont()
962 if (argtypes[0]->tt_type == VAR_DICT) in ret_first_cont()
964 if (argtypes[0]->tt_type == VAR_BLOB) in ret_first_cont()
965 return argtypes[0]; in ret_first_cont()
975 ret_list_or_dict_0(int argcount, type_T **argtypes UNUSED) in ret_list_or_dict_0()
987 ret_list_or_dict_1(int argcount, type_T **argtypes UNUSED) in ret_list_or_dict_1()
995 ret_argv(int argcount, type_T **argtypes UNUSED) in ret_argv()
1006 ret_remove(int argcount, type_T **argtypes) in ret_remove() argument
1010 if (argtypes[0]->tt_type == VAR_LIST in ret_remove()
1011 || argtypes[0]->tt_type == VAR_DICT) in ret_remove()
1012 return argtypes[0]->tt_member; in ret_remove()
1013 if (argtypes[0]->tt_type == VAR_BLOB) in ret_remove()
1020 ret_getreg(int argcount, type_T **argtypes UNUSED) in ret_getreg()
1029 ret_maparg(int argcount, type_T **argtypes UNUSED) 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);
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()
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()