| /vim-8.2.3635/src/ |
| H A D | profiler.c | 579 profile_may_start_func(profinfo_T *info, ufunc_T *fp, ufunc_T *caller) in profile_may_start_func() argument 586 if (fp->uf_profiling || (caller != NULL && caller->uf_profiling)) in profile_may_start_func() 600 profile_may_end_func(profinfo_T *info, ufunc_T *fp, ufunc_T *caller) in profile_may_end_func() argument 606 if (caller != NULL && caller->uf_profiling) in profile_may_end_func() 608 profile_add(&caller->uf_tm_children, &info->pi_call_start); in profile_may_end_func() 609 profile_add(&caller->uf_tml_children, &info->pi_call_start); in profile_may_end_func()
|
| H A D | userfunc.c | 2049 current_funccal = fc->caller; in cleanup_function_call() 2105 fc->caller = previous_funccal; in cleanup_function_call() 2159 *pfc = fc->caller; in funccal_unref() 2490 ufunc_T *caller = fc->caller == NULL ? NULL : fc->caller->func; in call_user_func() local 2501 || (caller != NULL && caller->uf_profiling))) in call_user_func() 2504 current_funccal = fc->caller; in call_user_func() 2723 fc->caller == NULL ? NULL : fc->caller->func); in call_user_func() 2761 ufunc_T *caller = fc->caller == NULL ? NULL : fc->caller->func; in call_user_func() local 2763 if (fp->uf_profiling || (caller != NULL && caller->uf_profiling)) in call_user_func() 5437 *pfc = fc->caller; in free_unref_funccal() [all …]
|
| H A D | vim9execute.c | 672 ufunc_T *caller = prev_dfunc->df_ufunc; in func_return() local 675 || (caller != NULL && caller->uf_profiling)) in func_return() 678 + profile_info_ga.ga_len - 1, dfunc->df_ufunc, caller); in func_return()
|
| H A D | structs.h | 1732 funccall_T *caller; // calling function or NULL; or next funccal in member
|
| /vim-8.2.3635/src/proto/ |
| H A D | profiler.pro | 22 void profile_may_start_func(profinfo_T *info, ufunc_T *fp, ufunc_T *caller); 23 void profile_may_end_func(profinfo_T *info, ufunc_T *fp, ufunc_T *caller);
|
| /vim-8.2.3635/src/testdir/ |
| H A D | script_util.vim | 49 " the caller should call DeleteTheScript() afterwards.
|
| H A D | test_vimscript.vim | 2638 " caller is checked for a matching :catch clause. 4515 " This is a double ":silent!" (see caller). 4525 " This has a ":silent!" from the caller: 4886 " caller. 5026 " can be caught by the caller. 6131 " exception is propagated to the caller.
|
| H A D | test_trycatch.vim | 150 " a value, this is the value visible to the caller if not overwritten
|
| H A D | test_quickfix.vim | 192 " already set by the caller.
|
| /vim-8.2.3635/runtime/indent/ |
| H A D | erlang.vim | 592 " '[', '<<', etc.) is found. It asks the caller to return if the stack 602 " should_return: bool -- if true, the caller should return `indent` to Vim 622 " It asks the caller to return if the stack is already empty. 634 " should_return: bool -- if true, the caller should return `indent` to Vim 677 " should_return: bool -- if true, the caller should return `indent` to Vim
|
| H A D | html.vim | 746 " caller starts from a line a:lnum + 1 that is not a comment
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | dtrace.vim | 89 syn keyword dtraceIdentifier args caller chip cpu curcpu curlwpsinfo curpsinfo
|
| H A D | moo.vim | 39 syn match mooVariable display ~\<\%(args\%(tr\)\=\|caller\|dobj\%(str\)\=\|iobj\%(str\)\=\|player\|…
|
| H A D | cf.vim | 649 \|caller
|
| H A D | ruby.vim | 425 syn match rubyKeyword "\%#=1\<\%(callcc\|caller\|lambda\|proc\)\>"
|
| H A D | perl.vim | 93 syn match perlStatementFlow "\<\%(caller\|die\|dump\|eval\|exit\|wantarray\|evalbytes\)\>"
|
| H A D | sh.vim | 601 …syn keyword shStatement bind builtin caller compopt declare dirs disown enable export help logout …
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | channel.txt | 287 channel. The caller is then completely responsible for correct encoding and 526 decode the response. The caller is responsible for the 528 in NL mode, the caller must do that. The NL in the response 684 decode the response. The caller is responsible for the 686 in NL mode, the caller must do that. The NL in the response
|
| H A D | vim9.txt | 1059 The first form is a mandatory argument, the caller 1062 When the caller omits an argument the {value} is used. 1223 and/or a dictionary, which are not visible to the caller. Since they are
|
| H A D | eval.txt | 13917 exception is then propagated to the caller of the command. 14421 abandoned and the exception is propagated to the caller of the command. 14444 is thrown that can be caught by the caller of the command. 14488 autocommands will be catchable by the caller of the command: > 14501 autocommands. Exceptions from that sequence will be catchable by the caller 14503 Example: For the ":write" command, the caller cannot know whether the file
|
| H A D | version7.txt | 5414 caller doesn't want to get K_IGNORE. 15070 Solution: Get 'textwidth' in caller of enter_buffer(). (Christian Brabandt)
|
| /vim-8.2.3635/runtime/autoload/ |
| H A D | javascriptcomplete.vim | 80 let funcprop = ['arguments', 'arguments.callee', 'arguments.caller', 'arguments.length',
|