Home
last modified time | relevance | path

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

/vim-8.2.3635/src/proto/
H A Duserfunc.pro11 ufunc_T *find_func_even_dead(char_u *name, int is_global, cctx_T *cctx);
12 ufunc_T *find_func(char_u *name, int is_global, cctx_T *cctx);
34 char_u *trans_function_name(char_u **pp, int *is_global, int skip, int flags, funcdict_T *fdp, part…
41 int translated_function_exists(char_u *name, int is_global);
/vim-8.2.3635/src/
H A Duserfunc.c1879 if (!is_global) in find_func_even_dead()
3309 int is_global = FALSE; in call_func() local
3314 is_global = TRUE; in call_func()
3352 fp = find_func(p, is_global, NULL); in call_func()
3544 int *is_global, in trans_function_name() argument
3700 *is_global = TRUE; in trans_function_name()
3863 int is_global = FALSE; in define_function() local
4604 int is_global = FALSE; in function_exists() local
4626 int is_global = FALSE; in get_expanded_name() local
4697 int is_global = FALSE; in ex_delfunction() local
[all …]
H A Dvim9compile.c460 int is_global; in item_exists() local
477 is_global = (name[0] == 'g' && name[1] == ':'); in item_exists()
478 return find_func(is_global ? name + 2 : name, is_global, cctx) != NULL; in item_exists()
5790 int is_global = *eap->arg == 'g' && eap->arg[1] == ':'; in compile_nested_function() local
5826 if (name_start[1] == ':' && !is_global) in compile_nested_function()
5850 if (!is_global && cctx->ctx_ufunc->uf_block_depth > 0) in compile_nested_function()
5884 if (is_global) in compile_nested_function()
H A Devalvars.c2872 int is_global = FALSE; in lookup_scriptitem() local
2913 is_global = TRUE; in lookup_scriptitem()
2916 if (find_func(fname, is_global, NULL) != NULL) in lookup_scriptitem()
H A Devalfunc.c3923 int is_global = FALSE; in common_function() local
3958 trans_name = trans_function_name(&name, &is_global, FALSE, in common_function()
3970 ? find_func(trans_name, is_global, NULL) == NULL in common_function()
3971 : !translated_function_exists(trans_name, is_global))) in common_function()
4108 pt->pt_func = find_func(trans_name, is_global, NULL); in common_function()
H A Dvim9execute.c5848 int is_global = FALSE; in ex_disassemble() local
5869 fname = trans_function_name(&arg, &is_global, FALSE, in ex_disassemble()
5877 ufunc = find_func(fname, is_global, NULL); in ex_disassemble()