Lines Matching refs:is_global

1873 find_func_even_dead(char_u *name, int is_global, cctx_T *cctx)  in find_func_even_dead()  argument
1879 if (!is_global) in find_func_even_dead()
1938 find_func(char_u *name, int is_global, cctx_T *cctx) in find_func() argument
1940 ufunc_T *fp = find_func_even_dead(name, is_global, cctx); in find_func()
3309 int is_global = FALSE; in call_func() local
3314 is_global = TRUE; in call_func()
3328 fp = find_func(rfname, is_global, NULL); in call_func()
3337 fp = find_func(rfname, is_global, NULL); in call_func()
3343 fp = find_func(rfname, is_global, NULL); in call_func()
3352 fp = find_func(p, is_global, NULL); in call_func()
3544 int *is_global, in trans_function_name() argument
3699 if (is_global != NULL && lv.ll_name[0] == 'g') in trans_function_name()
3700 *is_global = TRUE; in trans_function_name()
3863 int is_global = FALSE; in define_function() local
3961 name = trans_function_name(&p, &is_global, eap->skip, in define_function()
4003 fp = find_func(name, is_global, NULL); in define_function()
4069 if (vim9script && eap->forceit && !is_global) in define_function()
4204 else if (name != NULL && find_func(name, is_global, NULL) != NULL) in define_function()
4239 fp = find_func_even_dead(name, is_global, NULL); in define_function()
4576 translated_function_exists(char_u *name, int is_global) in translated_function_exists() argument
4580 return find_func(name, is_global, NULL) != NULL; in translated_function_exists()
4604 int is_global = FALSE; in function_exists() local
4609 p = trans_function_name(&nm, &is_global, FALSE, flag, NULL, NULL, NULL); in function_exists()
4615 n = translated_function_exists(p, is_global); in function_exists()
4626 int is_global = FALSE; in get_expanded_name() local
4628 p = trans_function_name(&nm, &is_global, FALSE, in get_expanded_name()
4632 && (!check || translated_function_exists(p, is_global))) in get_expanded_name()
4697 int is_global = FALSE; in ex_delfunction() local
4700 name = trans_function_name(&p, &is_global, eap->skip, 0, &fudi, in ex_delfunction()
4727 fp = find_func(name, is_global, NULL); in ex_delfunction()