Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dvim9compile.c187 garray_T ctx_imports; // imported items member
2600 for (idx = 0; idx < cctx->ctx_imports.ga_len; ++idx) in find_imported()
2602 imported_T *import = ((imported_T *)cctx->ctx_imports.ga_data) in find_imported()
2643 for (idx = 0; idx < cctx->ctx_imports.ga_len; ++idx) in free_imported()
2645 imported_T *import = ((imported_T *)cctx->ctx_imports.ga_data) + idx; in free_imported()
2649 ga_clear(&cctx->ctx_imports); in free_imported()
9609 ga_init2(&cctx.ctx_imports, sizeof(imported_T), 10); in compile_def_function()