Searched refs:argtypes (Results 1 – 6 of 6) sorted by relevance
| /vim-8.2.3635/src/ |
| H A D | userfunc.c | 68 garray_T *argtypes, in one_function_arg() argument 81 || (argtypes == NULL in one_function_arg() 128 if (argtypes != NULL && (skip || ga_grow(argtypes, 1) == OK)) in one_function_arg() 163 ((char_u **)argtypes->ga_data)[argtypes->ga_len++] = type; in one_function_arg() 199 if (argtypes != NULL) in get_function_args() 245 if (argtypes != NULL) in get_function_args() 379 if (argtypes->ga_len > 0) in parse_argument_types() 1088 garray_T *argtypes, in lambda_function_body() argument 1288 garray_T argtypes; in get_lambda_tv() local 3869 garray_T argtypes; in define_function() local [all …]
|
| H A D | evalfunc.c | 942 return argtypes[0]; in ret_first_arg() 950 if (argtypes[0] == &t_number) in ret_repeat() 952 return argtypes[0]; in ret_repeat() 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() 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() [all …]
|
| H A D | vim9compile.c | 1828 type_T **argtypes = NULL; in generate_BCALL() local 1848 argtypes = ((type_T **)stack->ga_data) + stack->ga_len - argcount; in generate_BCALL() 1855 ? argtypes[i + 1] in generate_BCALL() 1856 : (i == argoff - 1) ? argtypes[0] : argtypes[i]; in generate_BCALL() 1857 argtypes = shuffled_argtypes; in generate_BCALL() 1859 if (internal_func_check_arg_types(argtypes, func_idx, argcount, in generate_BCALL() 1863 maptype = *argtypes; in generate_BCALL() 1876 internal_func_ret_type(func_idx, argcount, argtypes); in generate_BCALL()
|
| H A D | evalbuffer.c | 808 ret_f_getline(int argcount, type_T **argtypes UNUSED) in ret_f_getline()
|
| /vim-8.2.3635/src/proto/ |
| H A D | evalbuffer.pro | 19 type_T *ret_f_getline(int argcount, type_T **argtypes);
|
| H A D | evalfunc.pro | 10 type_T *internal_func_ret_type(int idx, int argcount, type_T **argtypes);
|