| /vim-8.2.3635/src/proto/ |
| H A D | alloc.pro | 16 void ga_clear(garray_T *gap); 17 void ga_clear_strings(garray_T *gap); 18 int ga_copy_strings(garray_T *from, garray_T *to); 19 void ga_init(garray_T *gap); 21 int ga_grow(garray_T *gap, int n); 22 int ga_grow_inner(garray_T *gap, int n); 23 char_u *ga_concat_strings(garray_T *gap, char *sep); 24 int ga_add_string(garray_T *gap, char_u *p); 25 void ga_concat(garray_T *gap, char_u *s); 27 void ga_append(garray_T *gap, int c); [all …]
|
| H A D | vim9type.pro | 2 void clear_type_list(garray_T *gap); 5 type_T *get_list_type(type_T *member_type, garray_T *type_gap); 6 type_T *get_dict_type(type_T *member_type, garray_T *type_gap); 7 type_T *alloc_func_type(type_T *ret_type, int argcount, garray_T *type_gap); 8 type_T *get_func_type(type_T *ret_type, int argcount, garray_T *type_gap); 9 int func_type_add_arg_types(type_T *functype, int argcount, garray_T *type_gap); 11 type_T *typval2type(typval_T *tv, int copyID, garray_T *type_gap, int do_member); 12 type_T *typval2type_vimvar(typval_T *tv, garray_T *type_gap); 21 type_T *parse_type(char_u **arg, garray_T *type_gap, int give_error); 23 void common_type(type_T *type1, type_T *type2, type_T **dest, garray_T *type_gap); [all …]
|
| H A D | fold.pro | 33 void cloneFoldGrowArray(garray_T *from, garray_T *to); 34 void deleteFoldRecurse(garray_T *gap); 38 void foldMoveRange(garray_T *gap, linenr_T line1, linenr_T line2, linenr_T dest);
|
| H A D | findfile.pro | 15 void uniquefy_paths(garray_T *gap, char_u *pattern); 16 int expand_in_path(garray_T *gap, char_u *pattern, int flags);
|
| H A D | filepath.pro | 55 int unix_expandpath(garray_T *gap, char_u *path, int wildoff, int flags, int didstar); 57 void addfile(garray_T *gap, char_u *f, int flags);
|
| H A D | window.pro | 55 void win_size_save(garray_T *gap); 56 void win_size_restore(garray_T *gap);
|
| H A D | spellsuggest.pro | 4 void spell_suggest_list(garray_T *gap, char_u *word, int maxcount, int need_cap, int interactive);
|
| /vim-8.2.3635/src/ |
| H A D | alloc.c | 629 ga_clear(garray_T *gap) in ga_clear() 639 ga_clear_strings(garray_T *gap) in ga_clear_strings() 653 ga_copy_strings(garray_T *from, garray_T *to) in ga_copy_strings() 689 ga_init(garray_T *gap) in ga_init() 709 ga_grow(garray_T *gap, int n) in ga_grow() 717 ga_grow_inner(garray_T *gap, int n) in ga_grow_inner() 749 ga_concat_strings(garray_T *gap, char *sep) in ga_concat_strings() 784 ga_add_string(garray_T *gap, char_u *p) in ga_add_string() 806 ga_concat(garray_T *gap, char_u *s) in ga_concat() 840 ga_append(garray_T *gap, int c) in ga_append() [all …]
|
| H A D | fold.c | 154 garray_T *gap; in hasFoldingWin() 581 garray_T *gap; in foldCreate() 717 garray_T *gap; in deleteFold() 894 garray_T *gap; in foldMoveTo() 1104 cloneFoldGrowArray(garray_T *from, garray_T *to) in cloneFoldGrowArray() 1188 garray_T *gap; in foldLevelWin() 1306 garray_T *gap; in setManualFoldWin() 1512 garray_T *gap, in foldMarkAdjustRecurse() 2401 garray_T *gap, in foldUpdateIEMSRecurse() 2887 garray_T *gap, in foldSplit() [all …]
|
| H A D | vim9type.c | 28 get_type_ptr(garray_T *type_gap) in get_type_ptr() 44 clear_type_list(garray_T *gap) in clear_type_list() 106 get_list_type(type_T *member_type, garray_T *type_gap) in get_list_type() 135 get_dict_type(type_T *member_type, garray_T *type_gap) in get_dict_type() 237 garray_T *type_gap) in func_type_add_arg_types() 433 typval2type_vimvar(typval_T *tv, garray_T *type_gap) in typval2type_vimvar() 463 garray_T type_list; in check_typval_type() 716 garray_T *type_gap, in parse_type_member() 1115 garray_T *type_gap) in get_member_type_from_stack() 1195 garray_T ga; in type_name() [all …]
|
| H A D | structs.h | 55 } garray_T; typedef 347 garray_T wi_folds; // clone of w_folds 1583 garray_T bv_ga; // growarray with the data 1648 garray_T uf_lines; // function lines 1855 garray_T sn_var_vals; 1911 garray_T eval_ga; 1912 garray_T eval_freega; 1918 garray_T eval_tofree_ga; 2153 garray_T wq_ga; 2783 garray_T b_ucmds; [all …]
|
| H A D | spell.h | 89 garray_T sl_comppat; // CHECKCOMPOUNDPATTERN items 97 garray_T sl_syl_items; // syllable items 102 garray_T sl_rep; // list of fromto_T entries from REP lines 105 garray_T sl_sal; // list of salitem_T entries from SAL lines 114 garray_T sl_repsal; // list of fromto_T entries from REPSAL lines
|
| H A D | testing.c | 22 prepare_assert_error(garray_T *gap) in prepare_assert_error() 131 garray_T *gap, in fill_assert_error() 259 garray_T ga; in assert_equal_common() 277 garray_T ga; in assert_match_common() 313 garray_T ga; in assert_bool() 352 garray_T ga; in assert_beeps() 422 garray_T ga; in assert_equalfile() 560 garray_T ga; in f_assert_exception() 596 garray_T ga; in f_assert_fails() 768 garray_T ga; in assert_inrange() [all …]
|
| H A D | vim9compile.c | 547 garray_T *instr = &cctx->ctx_instr; in generate_instr() 2386 garray_T *instr = &cctx->ctx_instr; in misplaced_cmdmod() 2405 garray_T *instr = &cctx->ctx_instr; in current_instr_idx() 3279 clear_instr_ga(garray_T *gap) in clear_instr_ga() 3296 garray_T save_ga = cctx->ctx_instr; in compile_string() 5245 garray_T *instr = &cctx->ctx_instr; in compile_and_or() 5246 garray_T end_ga; in compile_and_or() 5493 garray_T *instr = &cctx->ctx_instr; in compile_expr1() 6223 garray_T *instr = &cctx->ctx_instr; in generate_store_lhs() 9096 garray_T *instr = &cctx->ctx_instr; in compile_exec() [all …]
|
| H A D | vim9.h | 469 garray_T df_def_args_isn; // default argument instructions 470 garray_T df_var_names; // names of local vars 506 garray_T def_functions = {0, 0, sizeof(dfunc_T), 50, NULL}; 508 extern garray_T def_functions;
|
| H A D | debugger.c | 517 static garray_T dbg_breakp = {0, 0, sizeof(struct debuggy), 4, NULL}; 525 static garray_T prof_ga = {0, 0, sizeof(struct debuggy), 4, NULL}; 531 static linenr_T debuggy_find(int file,char_u *fname, linenr_T after, garray_T *gap, int *fp); 559 garray_T *gap) // either &dbg_breakp or &prof_ga in dbg_parsearg() 670 garray_T *gap; in ex_breakadd() 765 garray_T *gap; in ex_breakdel() 915 garray_T *gap, // either &dbg_breakp or &prof_ga in debuggy_find()
|
| H A D | json.c | 21 static int json_encode_item(garray_T *gap, typval_T *val, int copyID, int options); 31 json_encode_gap(garray_T *gap, typval_T *val, int options) in json_encode_gap() 51 garray_T ga; in json_encode() 71 garray_T ga; in json_encode_nr_expr() 94 write_string(garray_T *gap, char_u *str) in write_string() 187 json_encode_item(garray_T *gap, typval_T *val, int copyID, int options) in json_encode_item() 410 garray_T ga; in json_decode_string() 600 garray_T stack; in json_decode_item()
|
| H A D | userfunc.c | 67 garray_T *newargs, in one_function_arg() 68 garray_T *argtypes, in one_function_arg() 179 garray_T *newargs, in get_function_args() 654 garray_T *newlines, in get_function_body() 1087 garray_T *newargs, in lambda_function_body() 1088 garray_T *argtypes, in lambda_function_body() 1098 garray_T newlines; in lambda_function_body() 1285 garray_T newargs; in get_lambda_tv() 1286 garray_T newlines; in get_lambda_tv() 1288 garray_T argtypes; in get_lambda_tv() [all …]
|
| H A D | usercmd.c | 31 static garray_T ucmds = {0, 0, sizeof(ucmd_T), 4, NULL}; 137 garray_T *gap; in find_ucmd() 421 garray_T *gap; in uc_list() 898 garray_T *gap; in uc_add_command() 1016 garray_T ga; in may_get_cmd_block() 1144 uc_clear(garray_T *gap) in uc_clear() 1170 garray_T *gap; in ex_delcommand()
|
| H A D | ui.c | 794 garray_T *gap; in get_input_buf() 797 gap = ALLOC_ONE(garray_T); in get_input_buf() 818 garray_T *gap = (garray_T *)p; in set_input_buf()
|
| H A D | spellfile.c | 679 garray_T ga; in suggest_load_files() 997 garray_T *gap; in read_sal_section() 1226 garray_T *gap; in read_compound() 1413 garray_T *gap; in set_sofo() 1502 garray_T *gap = &lp->sl_sal; in set_sal_first() 1969 garray_T si_map; // MAP info concatenated 2548 garray_T *gap = &spin->si_comppat; in spell_read_aff() 3424 garray_T *gap, in add_fromto() 4865 garray_T *gap; in write_vim_spell() 5654 garray_T ga; in sug_maketable() [all …]
|
| H A D | scriptfile.c | 18 static garray_T ga_loaded = {0, 0, sizeof(char_u *), 4, NULL}; 121 garray_T ga; in estack_sfile() 779 remove_duplicates(garray_T *gap) in remove_duplicates() 817 garray_T ga; in ExpandRTDir() 911 garray_T ga; in ExpandPackAddDir() 1634 garray_T ga; in get_one_sourceline() 1816 garray_T ga; in getsourceline()
|
| H A D | vim9script.c | 253 new_imported(garray_T *gap) in new_imported() 351 garray_T *gap, in handle_import() 363 garray_T names; in handle_import() 364 garray_T as_names; in handle_import()
|
| H A D | viminfo.c | 26 garray_T vir_barlines; // lines starting with | 593 garray_T *values, in handle_viminfo_history() 946 garray_T *gap = &virp->vir_barlines; in write_viminfo_barlines() 973 barline_parse(vir_T *virp, char_u *text, garray_T *values) in barline_parse() 1726 handle_viminfo_register(garray_T *values, int force) in handle_viminfo_register() 2014 write_viminfo_marks(FILE *fp_out, garray_T *buflist) in write_viminfo_marks() 2232 garray_T *buflist, in copy_viminfo_marks() 2585 handle_viminfo_mark(garray_T *values, int force) in handle_viminfo_mark() 2736 garray_T values; in read_viminfo_barline() 2929 garray_T buflist; in do_viminfo()
|
| H A D | findfile.c | 2265 is_unique(char_u *maybe_unique, garray_T *gap, int i) in is_unique() 2302 expand_path_option(char_u *curdir, garray_T *gap) in expand_path_option() 2382 get_path_cutoff(char_u *fname, garray_T *gap) in get_path_cutoff() 2420 uniquefy_paths(garray_T *gap, char_u *pattern) in uniquefy_paths() 2430 garray_T path_ga; in uniquefy_paths() 2603 garray_T *gap, in expand_in_path() 2608 garray_T path_ga; in expand_in_path()
|