Lines Matching refs:func
10 func Test_profile_func()
11 call RunProfileFunc('func', 'let', 'let')
15 func RunProfileFunc(command, declare, assign)
18 profile func Foo*
65 " - Bar() is not reported since it does not match "profile func Foo*".
103 func Test_profile_func_with_ifelse()
104 call Run_profile_func_with_ifelse('func', 'let')
108 func Run_profile_func_with_ifelse(command, declare)
149 \ . ' -c "profile func Foo*"'
221 func Test_profile_func_with_trycatch()
222 call Run_profile_func_with_trycatch('func', 'let')
226 func Run_profile_func_with_trycatch(command, declare)
276 \ . ' -c "profile func Foo*"'
348 func Test_profile_file()
350 func! Foo()
379 call assert_match(' 2 0.\d\+ func! Foo()', lines[6])
396 func Test_profile_file_with_cont()
432 func Test_profile_completion()
434 call assert_equal('"profile continue file func pause start', @:)
440 func Test_profile_errors()
441 call assert_fails("profile func Foo", 'E750:')
446 func Test_profile_truncate_mbyte()
453 \ 'func! Foo()',
475 /func! Foo()
487 func Test_profdel_func()
490 func! Foo1()
492 func! Foo2()
494 func! Foo3()
497 profile func Foo1
498 profile func Foo2
502 profile func Foo3
503 profdel func Foo2
504 profdel func Foo3
532 func Test_profdel_star()
537 func! Foo()
539 profile func Foo
562 func Test_profile_typed_func()
571 call term_sendkeys(buf, ":func DoSomething()\<CR>"
574 call term_sendkeys(buf, ":profile func DoSomething\<CR>")
587 func Test_vim9_profiling()
597 prof func Func
608 func Test_vim9_nested_call()
612 def One(Ref: func(number))
621 prof func One
622 prof func Two