Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dprofiler.c579 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 Duserfunc.c2049 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 Dvim9execute.c672 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 Dstructs.h1732 funccall_T *caller; // calling function or NULL; or next funccal in member
/vim-8.2.3635/src/proto/
H A Dprofiler.pro22 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 Dscript_util.vim49 " the caller should call DeleteTheScript() afterwards.
H A Dtest_vimscript.vim2638 " 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 Dtest_trycatch.vim150 " a value, this is the value visible to the caller if not overwritten
H A Dtest_quickfix.vim192 " already set by the caller.
/vim-8.2.3635/runtime/indent/
H A Derlang.vim592 " '[', '<<', 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 Dhtml.vim746 " caller starts from a line a:lnum + 1 that is not a comment
/vim-8.2.3635/runtime/syntax/
H A Ddtrace.vim89 syn keyword dtraceIdentifier args caller chip cpu curcpu curlwpsinfo curpsinfo
H A Dmoo.vim39 syn match mooVariable display ~\<\%(args\%(tr\)\=\|caller\|dobj\%(str\)\=\|iobj\%(str\)\=\|player\|…
H A Dcf.vim649 \|caller
H A Druby.vim425 syn match rubyKeyword "\%#=1\<\%(callcc\|caller\|lambda\|proc\)\>"
H A Dperl.vim93 syn match perlStatementFlow "\<\%(caller\|die\|dump\|eval\|exit\|wantarray\|evalbytes\)\>"
H A Dsh.vim601 …syn keyword shStatement bind builtin caller compopt declare dirs disown enable export help logout …
/vim-8.2.3635/runtime/doc/
H A Dchannel.txt287 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 Dvim9.txt1059 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 Deval.txt13917 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 Dversion7.txt5414 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 Djavascriptcomplete.vim80 let funcprop = ['arguments', 'arguments.callee', 'arguments.caller', 'arguments.length',