| /vim-8.2.3635/src/ |
| H A D | os_unix.c | 618 msec = p_mzq; in mch_delay() 620 msec = total; in mch_delay() 621 total -= msec; in mch_delay() 633 while (msec >= 1000) in mch_delay() 636 msec -= 999; in mch_delay() 6094 rest = msec; in WaitForCharOrMouse() 6103 msec = rest; in WaitForCharOrMouse() 6105 rest -= msec; in WaitForCharOrMouse() 6175 if (msec > 0) in RealWaitForChar() 6484 if (msec > 0) in RealWaitForChar() [all …]
|
| H A D | time.c | 450 create_timer(long msec, int repeat) in create_timer() argument 464 timer->tr_interval = msec; in create_timer() 466 profile_setlimit(msec, &timer->tr_due); in create_timer() 823 long msec; in f_timer_start() local 838 msec = (long)tv_get_number(&argvars[0]); in f_timer_start() 855 timer = create_timer(msec, repeat); in f_timer_start() 958 long msec; in time_diff() local 961 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L, in time_diff() 963 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L); in time_diff()
|
| H A D | ui.c | 536 long msec = msec_arg; in ui_delay() local 540 msec = ui_delay_for_testing; in ui_delay() 543 ch_log(NULL, "ui_delay(%ld)", msec); in ui_delay() 547 gui_wait_for_chars(msec, typebuf.tb_change_cnt); in ui_delay() 550 mch_delay(msec, ignoreinput ? MCH_DELAY_IGNOREINPUT : 0); in ui_delay()
|
| H A D | os_vms.c | 738 long msec, in RealWaitForChar() argument 747 float sec =(float) msec/1000; in RealWaitForChar() 794 if (msec == 0) { in RealWaitForChar() 797 } else if (msec < 0) { in RealWaitForChar()
|
| H A D | profiler.c | 115 profile_setlimit(long msec, proftime_T *tm) in profile_setlimit() argument 117 if (msec <= 0) // no limit in profile_setlimit() 126 tm->QuadPart += (LONGLONG)((double)msec / 1000.0 * (double)fr.QuadPart); in profile_setlimit() 131 usec = (long)tm->tv_usec + (long)msec * 1000; in profile_setlimit()
|
| H A D | os_win32.c | 1569 if (msec > 0) in WaitForChar() 1572 else if (msec < 0) in WaitForChar() 1581 if (msec != 0) in WaitForChar() 1601 if (msec > 0) in WaitForChar() 1609 if (msec != 0) in WaitForChar() 1725 else if (msec == 0) in WaitForChar() 6781 long msec, in mch_delay() argument 6801 while (msec > 0) in mch_delay() 6804 if (msec < towait) in mch_delay() 6805 towait = msec; in mch_delay() [all …]
|
| H A D | os_amiga.c | 231 mch_delay(long msec, int flags) in mch_delay() argument 237 if (msec > 0) in mch_delay() 240 Delay(msec / 20L); // Delay works with 20 msec intervals in mch_delay() 242 WaitForChar(raw_in, msec * 1000L); in mch_delay()
|
| /vim-8.2.3635/src/testdir/ |
| H A D | shared.vim | 129 " A second argument can be used to specify a different timeout in msec. 138 throw 'WaitFor() timed out after ' . timeout . ' msec' 147 " A second argument can be used to specify a different timeout in msec. 204 func Standby(msec) argument 207 let g:_standby_timer = timer_start(a:msec, function('s:feedkeys')) 211 execute 'sleep ' a:msec . 'm' 212 return a:msec
|
| H A D | test_sleep.vim | 7 let msec = str2nr(timestr[dotidx + 1:]) 8 return (sec * 1000) + (msec / 1000)
|
| H A D | test_debugger.vim | 21 " 'msec' - time to wait for a match 26 let msec = get(a:options, 'msec', 1000) 29 call WaitForAssert({-> assert_match(l, term_getline(a:buf, lnum))}, msec) 31 call WaitForAssert({-> assert_equal(l, term_getline(a:buf, lnum))}, msec) 846 \ 'cmd: call GlobalFunction()'], #{msec: 5000}) 1217 \ ], #{msec: 5000})
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | pi_paren.txt | 49 - A timeout of 300 msec (60 msec in Insert mode). This can be changed with the
|
| H A D | channel.txt | 182 actually uses a 1 msec timeout, that is required on many 184 msec at least. 206 call ch_setoptions(channel, {'timeout': msec}) 452 timeout in msec use the "timeout" option: 569 "sock_timeout" timeout in msec 574 "out_timeout" timeout in msec 578 "err_timeout" timeout in msec 582 "in_timeout" timeout in msec 697 "timeout" default read timeout in msec
|
| /vim-8.2.3635/src/proto/ |
| H A D | os_vms.pro | 15 int RealWaitForChar(int fd, long msec, int *check_for_gpm, int *interrupted);
|
| H A D | time.pro | 11 timer_T *create_timer(long msec, int repeat);
|
| H A D | profiler.pro | 7 void profile_setlimit(long msec, proftime_T *tm);
|
| H A D | os_amiga.pro | 8 void mch_delay(long msec, int flags);
|
| H A D | gui_x11.pro | 36 void gui_mch_flash(int msec);
|
| H A D | gui_gtk_x11.pro | 51 void gui_mch_flash(int msec);
|
| H A D | os_win32.pro | 56 void mch_delay(long msec, int flags);
|
| H A D | gui_photon.pro | 51 void gui_mch_flash(int msec);
|
| H A D | os_unix.pro | 8 void mch_delay(long msec, int flags);
|
| H A D | ex_docmd.pro | 51 void do_sleep(long msec, int hide_cursor);
|
| H A D | gui_haiku.pro | 49 void gui_mch_flash(int msec);
|
| H A D | gui_w32.pro | 52 void gui_mch_flash(int msec);
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | 8th.vim | 151 Builtin +hour d:+hour +min d:+min +msec d:+msec - d:- .hebrew d:.hebrew .islamic d:.islamic .time … 152 Builtin / d:/ = d:= >fixed d:>fixed >hebepoch d:>hebepoch >jdn d:>jdn >msec d:>msec >unix d:>unix … 165 Builtin longitude d:longitude longitude d:longitude msec d:msec msec> d:msec> new d:new next-dow d… 252 …ltin edit-string nk:edit-string event nk:event event-boost nk:event-boost event-msec nk:event-msec
|