| /vim-8.2.3635/src/ |
| H A D | profiler.c | 41 tm->QuadPart = now.QuadPart - tm->QuadPart; in profile_end() 44 tm->tv_usec = now.tv_usec - tm->tv_usec; in profile_end() 45 tm->tv_sec = now.tv_sec - tm->tv_sec; in profile_end() 49 --tm->tv_sec; in profile_end() 68 --tm->tv_sec; in profile_sub() 88 sprintf(buf, "%3ld.%06ld", (long)tm->tv_sec, (long)tm->tv_usec); in profile_msg() 106 return (float_T)tm->tv_sec + (float_T)tm->tv_usec / 1000000.0; in profile_float() 118 profile_zero(tm); in profile_setlimit() 156 || (now.tv_sec == tm->tv_sec && now.tv_usec > tm->tv_usec)); in profile_passed_limit() 194 double usec = (tm->tv_sec * 1000000.0 + tm->tv_usec) / count; in profile_divide() [all …]
|
| H A D | time.c | 37 static struct tm * 87 struct tm tmval; in get_ctime() 88 struct tm *curtime; in get_ctime() 153 tm->HighPart = n1; in list2proftime() 154 tm->LowPart = n2; in list2proftime() 156 tm->tv_sec = n1; in list2proftime() 157 tm->tv_usec = n2; in list2proftime() 231 proftime_T tm; in f_reltimefloat() local 255 proftime_T tm; in f_reltimestr() local 278 struct tm tmval; in f_strftime() [all …]
|
| H A D | regexp_bt.c | 3245 proftime_T *tm UNUSED, // timeout limit or NULL in regmatch() 3289 if (tm != NULL && ++tm_count == 100) in regmatch() 3292 if (profile_passed_limit(tm)) in regmatch() 4733 proftime_T *tm, // timeout limit or NULL in regtry() argument 4818 proftime_T *tm, // timeout limit or NULL in bt_regexec_both() argument 4941 retval = regtry(prog, col, tm, timed_out); in bt_regexec_both() 4976 retval = regtry(prog, col, tm, timed_out); in bt_regexec_both() 4994 if (tm != NULL && ++tm_count == 20) in bt_regexec_both() 4997 if (profile_passed_limit(tm)) in bt_regexec_both() 5084 proftime_T *tm, // timeout limit or NULL in bt_regexec_multi() argument [all …]
|
| H A D | match.c | 337 profile_setlimit(p_rdt, &(cur->hl.tm)); in init_search_hl() 455 if (profile_passed_limit(&(shl->tm))) in next_search_hl() 503 &(shl->tm), &timed_out in next_search_hl()
|
| H A D | search.c | 642 proftime_T *tm = NULL; // timeout limit or NULL in searchit() local 650 tm = extra_arg->sa_tm; in searchit() 738 if (tm != NULL && profile_passed_limit(tm)) in searchit() 750 tm, timed_out in searchit() 848 tm, timed_out in searchit() 959 tm, timed_out in searchit()
|
| H A D | osdef1.h.in | 82 extern size_t strftime(char *, size_t, char *, struct tm *);
|
| H A D | regexp.c | 2895 proftime_T *tm, // timeout limit or NULL in vim_regexec_multi() argument 2916 rmp, win, buf, lnum, col, tm, timed_out); in vim_regexec_multi() 2948 rmp, win, buf, lnum, col, tm, timed_out); in vim_regexec_multi()
|
| H A D | gui_w32.c | 1480 TEXTMETRIC tm; in GetFontSize() local 1482 GetTextMetrics(hdc, &tm); in GetFontSize() 1488 gui.char_width = (size.cx / 26 + 1) / 2 + tm.tmOverhang; in GetFontSize() 1490 gui.char_height = tm.tmHeight + p_linespace; in GetFontSize() 4417 TEXTMETRIC tm; in set_tabline_font() local 4433 GetTextMetrics(hdc, &tm); in set_tabline_font() 4442 gui.tabline_height = tm.tmHeight + tm.tmInternalLeading + 7; in set_tabline_font()
|
| H A D | regexp_nfa.c | 7202 proftime_T *tm UNUSED, // timeout limit or NULL in nfa_regtry() 7215 nfa_time_limit = tm; in nfa_regtry() 7344 proftime_T *tm, // timeout limit or NULL in nfa_regexec_both() argument 7440 retval = nfa_regtry(prog, col, tm, timed_out); in nfa_regexec_both() 7656 proftime_T *tm, // timeout limit or NULL in nfa_regexec_multi() argument 7660 return nfa_regexec_both(NULL, col, tm, timed_out); in nfa_regexec_multi()
|
| H A D | syntax.c | 361 syn_set_timeout(proftime_T *tm) in syn_set_timeout() argument 363 syn_tm = tm; in syn_set_timeout() 6714 proftime_T tm; in syntime_report() local 6744 profile_divide(&spp->sp_time.total, spp->sp_time.count, &tm); in syntime_report() 6745 p->average = tm; in syntime_report()
|
| H A D | gui_haiku.cc | 3040 VimTablineMsg tm; in Select() local 3041 tm.index = i + 1; in Select() 3042 write_port(gui.vdcmp, VimMsg::Tabline, &tm, sizeof(tm)); in Select()
|
| H A D | ex_getln.c | 420 proftime_T tm; in may_do_incsearch_highlighting() local 489 profile_setlimit(500L, &tm); in may_do_incsearch_highlighting() 498 sia.sa_tm = &tm; in may_do_incsearch_highlighting()
|
| H A D | evalfunc.c | 8025 proftime_T tm; in search_cmn() local 8074 profile_setlimit(time_limit, &tm); in search_cmn() 8095 sia.sa_tm = &tm; in search_cmn() 8542 proftime_T tm; in do_searchpair() local 8551 profile_setlimit(time_limit, &tm); in do_searchpair() 8584 sia.sa_tm = &tm; in do_searchpair()
|
| /vim-8.2.3635/src/proto/ |
| H A D | profiler.pro | 2 void profile_start(proftime_T *tm); 3 void profile_end(proftime_T *tm); 4 void profile_sub(proftime_T *tm, proftime_T *tm2); 5 char *profile_msg(proftime_T *tm); 6 float_T profile_float(proftime_T *tm); 7 void profile_setlimit(long msec, proftime_T *tm); 8 int profile_passed_limit(proftime_T *tm); 9 void profile_zero(proftime_T *tm); 24 void prof_child_enter(proftime_T *tm); 25 void prof_child_exit(proftime_T *tm); [all …]
|
| H A D | syntax.pro | 2 void syn_set_timeout(proftime_T *tm);
|
| H A D | regexp.pro | 21 …mmatch_T *rmp, win_T *win, buf_T *buf, linenr_T lnum, colnr_T col, proftime_T *tm, int *timed_out);
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_textformat.vim | 574 " Test for formatting multi-byte text with 'fo=tm' and 'tw=1' 589 set tw=1 fo=tm 629 " Test for formatting multi-byte text with 'fo=tm' and 'tw=2' 649 set tw=2 fo=tm 718 " Test for formatting multi-byte text with 'fo=tm', 'tw=2' and 'autoindent'. 730 set ai tw=2 fo=tm 755 " Test for formatting multi-byte text with 'fo=tm', 'tw=2' and 'noai'. 767 set noai tw=2 fo=tm 797 set tw=2 fo=tm
|
| H A D | test_ex_mode.vim | 58 call assert_equal(["\t mn", "\tm\<C-T>n"], Ex("\tm\<C-T>n"), e)
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | povini.vim | 2 " Language: PoV-Ray(tm) 3.7 configuration/initialization files
|
| H A D | pov.vim | 2 " Language: PoV-Ray(tm) 3.7 Scene Description Language
|
| H A D | sisu.vim | 128 …lock,sisu_error matchgroup=sisu_link start="{\(\~^\s\)\?" end="\[[1-5][sS]*\]}\S\+\.ss[tm]" oneline
|
| H A D | vim.vim | 24 …eplace] substituterepeat sw[apname] t tabd[o] tabn[ext] tags te[aroff] tlm tm[enu] tp[revious] typ… 35 …pelllang spr sta sua swf syntax tagcase tb tenc termwinsize tfu timeoutlen tm ts tty tw udf update… 428 …] nm[ap] nn[oremap] no[remap] om[ap] ono[remap] smap snor[emap] tno[remap] tm[ap] vm[ap] vmapc[lea…
|
| /vim-8.2.3635/runtime/spell/ga/ |
| H A D | ga_IE.diff | 294 + SAL ULCH-- *L* # epenth. vowel,ulcha,[tm]ulch�n,amhulchach only
|
| /vim-8.2.3635/runtime/spell/gd/ |
| H A D | gd_GB.diff | 290 + SAL ULCH-- *L* # epenth. vowel,ulcha,[tm]ulch�n,amhulchach only
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | gui.txt | 980 *:tmenu* *:tm* 981 :tm[enu] {menupath} {rhs} Define a tip for a menu or tool. {only in 984 :tm[enu] [menupath] List menu tips. {only in X11 and Win32 GUI}
|