| /vim-8.2.3635/src/libvterm/src/ |
| H A D | rect.h | 9 static void rect_expand(VTermRect *dst, VTermRect *src) in rect_expand() argument 11 if(dst->start_row > src->start_row) dst->start_row = src->start_row; in rect_expand() 12 if(dst->start_col > src->start_col) dst->start_col = src->start_col; in rect_expand() 13 if(dst->end_row < src->end_row) dst->end_row = src->end_row; in rect_expand() 14 if(dst->end_col < src->end_col) dst->end_col = src->end_col; in rect_expand() 20 if(dst->start_row < bounds->start_row) dst->start_row = bounds->start_row; in rect_clip() 21 if(dst->start_col < bounds->start_col) dst->start_col = bounds->start_col; in rect_clip() 22 if(dst->end_row > bounds->end_row) dst->end_row = bounds->end_row; in rect_clip() 23 if(dst->end_col > bounds->end_col) dst->end_col = bounds->end_col; in rect_clip() 25 if(dst->end_row < dst->start_row) dst->end_row = dst->start_row; in rect_clip() [all …]
|
| H A D | screen.c | 554 dst->chars[i] = src->chars[i]; in resize_buffer() 559 dst->pen.bold = src->attrs.bold; in resize_buffer() 560 dst->pen.underline = src->attrs.underline; in resize_buffer() 561 dst->pen.italic = src->attrs.italic; in resize_buffer() 562 dst->pen.blink = src->attrs.blink; in resize_buffer() 564 dst->pen.conceal = src->attrs.conceal; in resize_buffer() 565 dst->pen.strike = src->attrs.strike; in resize_buffer() 566 dst->pen.font = src->attrs.font; in resize_buffer() 568 dst->pen.fg = src->fg; in resize_buffer() 569 dst->pen.bg = src->bg; in resize_buffer() [all …]
|
| /vim-8.2.3635/src/ |
| H A D | install-sh | 80 dst= 254 dst=$src 255 dstdir=$dst 272 dst=$dst_arg 276 if test -d "$dst"; then 281 dstdir=$dst 282 dst=$dstdir/`basename "$src"` 285 dstdir=`dirname "$dst"` 476 test ! -f "$dst" || 477 $doit $rmcmd -f "$dst" 2>/dev/null || [all …]
|
| H A D | regexp.c | 1966 char_u *dst; in vim_regsub_both() local 1988 dst = dest; in vim_regsub_both() 2170 dst += 3; in vim_regsub_both() 2194 ++dst; in vim_regsub_both() 2236 *dst = cc; in vim_regsub_both() 2237 dst++; in vim_regsub_both() 2275 *dst = CAR; in vim_regsub_both() 2276 ++dst; in vim_regsub_both() 2305 dst[1] = *s; in vim_regsub_both() 2344 dst++; in vim_regsub_both() [all …]
|
| H A D | misc1.c | 1366 dst += len; in expand_env_esc() 1391 var = dst; in expand_env_esc() 1450 var = dst; in expand_env_esc() 1506 STRCAT(test, dst + 1); in expand_env_esc() 1560 STRCPY(dst, var); in expand_env_esc() 1565 if (*var != NUL && after_pathsep(dst, dst + c) in expand_env_esc() 1567 && dst[-1] != ':' in expand_env_esc() 1571 dst += c; in expand_env_esc() 1589 *dst++ = *src++; in expand_env_esc() 1596 *dst++ = *src++; in expand_env_esc() [all …]
|
| H A D | misc2.c | 1269 char_u *dst, in trans_special() argument 1291 special_to_buf(int key, int modifiers, int keycode, char_u *dst) in special_to_buf() argument 1298 dst[dlen++] = K_SPECIAL; in special_to_buf() 1299 dst[dlen++] = KS_MODIFIER; in special_to_buf() 1300 dst[dlen++] = modifiers; in special_to_buf() 1305 dst[dlen++] = K_SPECIAL; in special_to_buf() 1306 dst[dlen++] = KEY2TERMCAP0(key); in special_to_buf() 1307 dst[dlen++] = KEY2TERMCAP1(key); in special_to_buf() 1310 dlen += (*mb_char2bytes)(key, dst + dlen); in special_to_buf() 1312 dlen = (int)(add_char2buf(key, dst + dlen) - dst); in special_to_buf() [all …]
|
| H A D | os_amiga.h | 235 #define mch_rename(src, dst) rename(src, dst) argument
|
| H A D | os_mac.h | 211 #define mch_rename(src, dst) rename(src, dst) argument
|
| H A D | os_unix.h | 456 # define mch_rename(src, dst) rename(src, dst) argument
|
| H A D | filepath.c | 2579 char_u *dst, // where to put the result in home_replace() argument 2591 *dst = NUL; in home_replace() 2667 *dst++ = '~'; in home_replace() 2682 *dst++ = *src++; in home_replace() 2685 *dst++ = *src++; in home_replace() 2689 *dst = NUL; in home_replace() 2704 char_u *dst; in home_replace_save() local 2710 dst = alloc(len); in home_replace_save() 2711 if (dst != NULL) in home_replace_save() 2712 home_replace(buf, src, dst, len, TRUE); in home_replace_save() [all …]
|
| H A D | fileio.c | 1593 char_u *src, *dst; in readfile() local 1630 dst = ptr; in readfile() 1701 dst += utf_char2bytes(ucs2buf[i], dst); in readfile() 1713 (LPSTR)dst, (int)(src - dst), in readfile() 1718 dst += dstlen; in readfile() 1728 conv_error = readfile_linenr(linecnt, ptr, dst); in readfile() 1733 mch_memmove(dst, src, bytelen); in readfile() 1734 dst += bytelen; in readfile() 1737 *dst++ = bad_char_behavior; in readfile() 1753 size = (long)(dst - ptr); in readfile()
|
| H A D | regexp_bt.c | 1139 char_u *dst; in reginsert() local 1149 dst = regcode; in reginsert() 1151 *--dst = *--src; in reginsert() 1167 char_u *dst; in reginsert_nr() local 1177 dst = regcode; in reginsert_nr() 1179 *--dst = *--src; in reginsert_nr() 1202 char_u *dst; in reginsert_limits() local 1212 dst = regcode; in reginsert_limits() 1214 *--dst = *--src; in reginsert_limits()
|
| H A D | channel.c | 993 const char *dst = hostname; in channel_open() local 1020 dst = inet_ntop(addr->ai_family, src, buf, sizeof(buf)); in channel_open() 1021 if (dst == NULL) in channel_open() 1022 dst = hostname; in channel_open() 1023 else if (STRCMP(hostname, dst) != 0) in channel_open() 1024 ch_log(channel, "Resolved %s to %s", hostname, dst); in channel_open() 1028 ch_log(channel, "Trying to connect to %s port %d", dst, port); in channel_open()
|
| H A D | terminal.c | 4317 url_decode(const char *src, const size_t len, char_u *dst) in url_decode() argument 4325 dst[j] = hexhex2nr((char_u *)&src[i + 1]); in url_decode() 4331 dst[j] = src[i]; in url_decode() 4336 dst[j] = '\0'; in url_decode()
|
| H A D | term.c | 3272 add_long_to_buf(long_u val, char_u *dst) in add_long_to_buf() argument 3280 dst[i - 1] = (char_u) ((val >> shift) & 0xff); in add_long_to_buf()
|
| /vim-8.2.3635/src/proto/ |
| H A D | misc1.pro | 30 void expand_env(char_u *src, char_u *dst, int dstlen); 31 void expand_env_esc(char_u *srcp, char_u *dst, int dstlen, int esc, int one, char_u *startstr);
|
| H A D | misc2.pro | 27 int trans_special(char_u **srcp, char_u *dst, int flags, int *did_simplify); 28 int special_to_buf(int key, int modifiers, int keycode, char_u *dst);
|
| H A D | filepath.pro | 36 void home_replace(buf_T *buf, char_u *src, char_u *dst, int dstlen, int one);
|
| H A D | term.pro | 41 void add_long_to_buf(long_u val, char_u *dst);
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | squid.vim | 110 syn keyword squidAcl method browser user src dst
|
| H A D | dcl.vim | 31 syn keyword dclInstr cc dst[graph] lat[cp] pro[duct] sub[routine]
|
| H A D | 8th.vim | 155 …mmuz d:Tammuz Tevet d:Tevet Thu d:Thu Tishrei d:Tishrei Tue d:Tue Wed d:Wed adjust-dst d:adjust-dst 158 Builtin do-dawn d:do-dawn do-dusk d:do-dusk do-rise d:do-rise doy d:doy dst? d:dst? dstquery d:dst…
|
| H A D | xmath.vim | 154 syn keyword xmathFunc dst initx0 product trsp
|