Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dprofiler.c492 if (fp->uf_name[0] == K_SPECIAL) in prof_sort_list()
493 fprintf(fd, " <SNR>%s()\n", fp->uf_name + 3); in prof_sort_list()
495 fprintf(fd, " %s()\n", fp->uf_name); in prof_sort_list()
581 if (!fp->uf_profiling && has_profiling(FALSE, fp->uf_name, NULL)) in profile_may_start_func()
747 if (fp->uf_name[0] == K_SPECIAL) in func_dump_profile()
748 fprintf(fd, "FUNCTION <SNR>%s()\n", fp->uf_name + 3); in func_dump_profile()
750 fprintf(fd, "FUNCTION %s()\n", fp->uf_name); in func_dump_profile()
H A Duserfunc.c482 STRCPY((void *)fp->uf_name, name); in set_ufunc_name()
1240 if (!ASCII_ISUPPER(*ufunc->uf_name)) in lambda_function_body()
1953 return ufunc->uf_name[0] != K_SPECIAL; in func_is_global()
1967 STRCAT(buf, fp->uf_name + 3); in cat_func_name()
1970 STRCPY(buf, fp->uf_name); in cat_func_name()
2351 STRCPY(fp->uf_name, global); in copy_func()
3026 if (func_name_refcount(fp->uf_name)) in free_all_functions()
3055 if (func_name_refcount(fp->uf_name)) in free_all_functions()
3833 ? !message_filtered(fp->uf_name) in list_functions()
3835 : !isdigit(*fp->uf_name) in list_functions()
[all …]
H A Dvim9script.c589 ufunc->uf_name) == 0))) in handle_import()
624 imported->imp_funcname = ufunc->uf_name; in handle_import()
H A Dstructs.h1682 char_u uf_name[4]; // name of function (actual size equals name); member
1760 #define UF2HIKEY(fp) ((fp)->uf_name)
1761 #define HIKEY2UF(p) ((ufunc_T *)((p) - offsetof(ufunc_T, uf_name)))
H A Dvim9execute.c163 breakpoint = dbg_find_breakpoint(FALSE, ufunc->uf_name, 0); in update_has_breakpoint()
857 semsg(_(e_toomanyarg), ufunc->uf_name); in call_ufunc()
859 semsg(_(e_toofewarg), ufunc->uf_name); in call_ufunc()
893 user_func_error(error, ufunc->uf_name); in call_ufunc()
1590 breakpoint = dbg_find_breakpoint(FALSE, ufunc->uf_name, in handle_debug()
5460 smsg("%s%4d FUNCREF %s", pfx, current, df->df_ufunc->uf_name); in list_instructions()
H A Dscriptfile.c76 ? ufunc->uf_name_exp : ufunc->uf_name, lnum); in estack_push_ufunc()
95 ? ufunc->uf_name_exp : ufunc->uf_name) == 0 in estack_top_is_ufunc()
H A Dvim9compile.c2041 ufunc->uf_name); in generate_CALL()
2058 isn->isn_arg.ufunc.cuf_name = vim_strsave(ufunc->uf_name); in generate_CALL()
3074 generate_PUSHFUNC(cctx, ufunc->uf_name, import->imp_type); in compile_load_scriptvar()
3113 return generate_PUSHFUNC(cctx, ufunc->uf_name, ufunc->uf_func_type); in generate_funcref()
9524 dfunc->df_name = vim_strsave(ufunc->uf_name); in add_def_function()
10447 if (ufunc != NULL && func_name_refcount(ufunc->uf_name)) in delete_instr()
10458 && func_name_refcount(dfunc->df_ufunc->uf_name)) in delete_instr()
H A Devalvars.c2654 rettv->vval.v_string = vim_strsave(ufunc->uf_name); in eval_variable()
2656 func_ref(ufunc->uf_name); in eval_variable()
H A Deval.c4317 return pt->pt_func->uf_name; in partial_name()
5847 rettv->vval.v_string = vim_strsave(ufunc->uf_name); in handle_subscript()