Home
last modified time | relevance | path

Searched refs:df_var_names (Results 1 – 3 of 3) sorted by relevance

/vim-8.2.3635/src/
H A Dvim9.h470 garray_T df_var_names; // names of local vars member
H A Dvim9compile.c608 isn->isn_arg.debug.dbg_var_names_len = dfunc->df_var_names.ga_len; in generate_instr_debug()
2473 lvar->lv_idx = dfunc->df_var_names.ga_len; in reserve_local()
2480 if (GA_GROW_FAILS(&dfunc->df_var_names, 1)) in reserve_local()
2482 ((char_u **)dfunc->df_var_names.ga_data)[lvar->lv_idx] = in reserve_local()
2484 ++dfunc->df_var_names.ga_len; in reserve_local()
9525 ga_init2(&dfunc->df_var_names, sizeof(char_u *), 10); in add_def_function()
9590 ga_clear_strings(&dfunc->df_var_names); in compile_def_function()
10238 dfunc->df_varcount = dfunc->df_var_names.ga_len; in compile_def_function()
10256 ga_clear_strings(&dfunc->df_var_names); in compile_def_function()
10611 ga_clear_strings(&dfunc->df_var_names); in delete_def_function_contents()
H A Dvim9execute.c1544 if (STRCMP(((char_u **)dfunc->df_var_names.ga_data)[idx], name) == 0) in lookup_debug_var()