| /vim-8.2.3635/ |
| H A D | Makefile | 27 cp src/config.mk.dist src/auto/config.mk; \ 37 cp src/config.mk.dist src/auto/config.mk; \ 266 cp READMEdir/"$$name" .; \ 513 cp gvim.exe dist/vim/$(VIMRTDIR)/gvim.exe 514 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe 515 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe 524 cp gvim.pdb dist/gvim$(VERSION).pdb 535 cp vimw32.exe dist/vim/$(VIMRTDIR)/vim.exe 536 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe 541 cp vimw32.pdb dist/vim$(VERSION)w32.pdb [all …]
|
| /vim-8.2.3635/src/libvterm/src/ |
| H A D | encoding.c | 51 cp[(*cpi)++] = UNICODE_INVALID; in decode_utf8() 55 cp[(*cpi)++] = c; in decode_utf8() 66 cp[(*cpi)++] = UNICODE_INVALID; in decode_utf8() 104 cp[(*cpi)++] = data->this_cp; in decode_utf8() 110 cp[(*cpi)++] = UNICODE_INVALID; in decode_utf8() 119 cp[(*cpi)++] = UNICODE_INVALID; in decode_utf8() 128 cp[(*cpi)++] = UNICODE_INVALID; in decode_utf8() 154 cp[(*cpi)++] = UNICODE_INVALID; in decode_utf8() 176 cp[(*cpi)++] = c; in decode_usascii() 204 cp[(*cpi)++] = table->chars[c]; in decode_table() [all …]
|
| /vim-8.2.3635/src/ |
| H A D | termlib.c | 531 char *cp, // string to print in tputs() argument 539 if (VIM_ISDIGIT(*cp)) { in tputs() 542 while (VIM_ISDIGIT(*cp)) in tputs() 544 if (*cp == '.') in tputs() 545 while (VIM_ISDIGIT(*++cp)) { in tputs() 546 counter = counter * 10L + (long)(*cp++ - '0'); in tputs() 553 cp++; in tputs() 559 while (*cp) // output string in tputs() 560 (*outc)(*cp++); in tputs() 566 while (*cp) in tputs() [all …]
|
| H A D | os_vms.c | 226 char_u *cp = NULL; in mch_getenv() local 241 if (cp = alloc(lengte + 1)) in mch_getenv() 242 strcpy((char *)cp, buffer); in mch_getenv() 243 return(cp); in mch_getenv() 248 cp = alloc(lengte); in mch_getenv() 249 if (cp) in mch_getenv() 250 strcpy((char *)cp, sbuf); in mch_getenv() 251 return cp; in mch_getenv() 705 char_u *cp; in vms_remove_version() local 709 *cp = '\0'; in vms_remove_version() [all …]
|
| H A D | netbeans.c | 1050 cp = (char *)args; in nb_do_cmd() 1051 serNum = strtol(cp, &cp, 10); in nb_do_cmd() 1162 off = strtol(cp, &cp, 10); in nb_do_cmd() 1163 count = strtol(cp, &cp, 10); in nb_do_cmd() 1307 off = strtol(cp, &cp, 10); in nb_do_cmd() 1925 typeNum = strtol(cp, &cp, 10); in nb_do_cmd() 1984 serNum = strtol(cp, &cp, 10); in nb_do_cmd() 1988 localTypeNum = strtol(cp, &cp, 10); in nb_do_cmd() 1995 vim_ignored = (int)strtol(cp, &cp, 10); in nb_do_cmd() 2029 serNum = strtol(cp, &cp, 10); in nb_do_cmd() [all …]
|
| H A D | indent.c | 28 char_u *cp; in tabstop_set() local 36 for (cp = var; *cp != NUL; ++cp) in tabstop_set() 38 if (cp == var || cp[-1] == ',') in tabstop_set() 44 if (cp != end) in tabstop_set() 52 if (VIM_ISDIGIT(*cp)) in tabstop_set() 54 if (cp[0] == ',' && cp > var && cp[-1] != ',' && cp[1] != NUL) in tabstop_set() 69 for (cp = var; *cp != NUL;) in tabstop_set() 82 while (*cp != NUL && *cp != ',') in tabstop_set() 83 ++cp; in tabstop_set() 84 if (*cp != NUL) in tabstop_set() [all …]
|
| H A D | if_python3.c | 702 const char *cp = libname; in py3_get_system_libname() local 711 while (*cp != '\0') in py3_get_system_libname() 713 if (*cp == ':' || *cp == '\\' || *cp == '/') in py3_get_system_libname() 719 ++cp; in py3_get_system_libname() 735 cp = installpath + len; in py3_get_system_libname() 737 while (cp > installpath && *(cp-1) == '\0') in py3_get_system_libname() 738 --cp; in py3_get_system_libname() 740 while (cp > installpath && (*(cp-1) == '\\' || *(cp-1) == '/')) in py3_get_system_libname() 741 --cp; in py3_get_system_libname() 743 if (cp <= installpath) in py3_get_system_libname() [all …]
|
| H A D | link.sh | 55 cp link.cmd linkit.sh 81 cp link.cmd linkit.sh 85 cp link.cmd linkit.sh 89 cp link.cmd linkit.sh
|
| H A D | optionstr.c | 2223 char_u *cp; in did_set_string_option() local 2235 for (cp = *varp; *cp; ++cp) in did_set_string_option() 2237 if (vim_isdigit(*cp)) in did_set_string_option() 2239 if (*cp == ',' && cp > *varp && *(cp-1) != ',') in did_set_string_option() 2261 char_u *cp; in did_set_string_option() local 2273 for (cp = *varp; *cp; ++cp) in did_set_string_option() 2275 if (vim_isdigit(*cp)) in did_set_string_option() 2277 if (*cp == ',' && cp > *varp && *(cp-1) != ',') in did_set_string_option()
|
| H A D | nbdebug.c | 80 char *cp; // nb_dlevel pointer in nbdebug_log_init() local 89 if (level_var && (cp = getenv(level_var)) != NULL) { in nbdebug_log_init() 90 nb_dlevel = strtoul(cp, NULL, 0); in nbdebug_log_init()
|
| H A D | winclip.c | 145 MultiByteToWideChar_alloc(UINT cp, DWORD flags, in MultiByteToWideChar_alloc() argument 149 *outlen = MultiByteToWideChar(cp, flags, in, inlen, 0, 0); in MultiByteToWideChar_alloc() 154 MultiByteToWideChar(cp, flags, in, inlen, *out, *outlen); in MultiByteToWideChar_alloc() 164 WideCharToMultiByte_alloc(UINT cp, DWORD flags, in WideCharToMultiByte_alloc() argument 169 *outlen = WideCharToMultiByte(cp, flags, in, inlen, NULL, 0, def, useddef); in WideCharToMultiByte_alloc() 174 WideCharToMultiByte(cp, flags, in, inlen, *out, *outlen, def, useddef); in WideCharToMultiByte_alloc()
|
| H A D | dosinst.c | 294 char *cp; in findoldfile() local 303 cp = bp + indir_l; in findoldfile() 305 || strchr(cp, '\\') != NULL in findoldfile() 306 || strchr(cp, '/') != NULL) in findoldfile() 310 strcpy(tmpname, cp); in findoldfile() 316 tmpname, cp, tmpname); in findoldfile() 320 if (rename(cp, tmpname) != 0) in findoldfile() 323 cp, tmpname, strerror(0)); in findoldfile() 327 farname = searchpath_save(cp); in findoldfile() 329 if (rename(tmpname, cp) != 0) in findoldfile() [all …]
|
| H A D | help.c | 799 char_u *cp; in fix_help_buffer() local 900 cp = IObuff; in fix_help_buffer() 905 cp = string_convert(&vc, IObuff, in fix_help_buffer() 907 if (cp == NULL) in fix_help_buffer() 908 cp = IObuff; in fix_help_buffer() 912 ml_append(lnum, cp, (colnr_T)0, FALSE); in fix_help_buffer() 913 if (cp != IObuff) in fix_help_buffer() 914 vim_free(cp); in fix_help_buffer()
|
| H A D | os_mswin.c | 2664 struct charset_pair *cp; in charset_id2name() local 2666 for (cp = charset_pairs; cp->name != NULL; ++cp) in charset_id2name() 2667 if ((BYTE)id == cp->charset) in charset_id2name() 2669 return cp->name; in charset_id2name() 2958 struct charset_pair *cp; in get_logfont() local 2960 for (cp = charset_pairs; cp->name != NULL; ++cp) in get_logfont() 2961 if (utf16ascncmp(p, cp->name, strlen(cp->name)) == 0) in get_logfont() 2963 lf->lfCharSet = cp->charset; in get_logfont() 2964 p += strlen(cp->name); in get_logfont() 2967 if (cp->name == NULL && verbose) in get_logfont()
|
| H A D | alloc.c | 786 char_u *cp = vim_strsave(p); in ga_add_string() local 788 if (cp == NULL) in ga_add_string() 793 vim_free(cp); in ga_add_string() 796 ((char_u **)(gap->ga_data))[gap->ga_len++] = cp; in ga_add_string()
|
| H A D | ex_docmd.c | 1469 if (cp->current_line + 1 >= cp->lines_gap->ga_len) in get_loop_line() 1478 line = cp->getline(c, cp->cookie, indent, options); in get_loop_line() 1487 wp = (wcmd_T *)(cp->lines_gap->ga_data) + cp->current_line; in get_loop_line() 1541 gp = cp->getline; in getline_equal() 1542 cp = cp->cookie; in getline_equal() 1570 gp = cp->getline; in getline_cookie() 1571 cp = cp->cookie; in getline_cookie() 1573 return cp; in getline_cookie() 1599 if (cp->current_line + 1 < cp->lines_gap->ga_len) in getline_peek() 1605 gp = cp->getline; in getline_peek() [all …]
|
| H A D | textobject.c | 1279 char_u *cp; in current_tagblock() local 1355 for (cp = p; *cp != NUL && *cp != '>' && !VIM_ISWHITE(*cp); MB_PTR_ADV(cp)) in current_tagblock() 1357 len = (int)(cp - p); in current_tagblock()
|
| H A D | installman.sh | 82 cp $helpsource/vimdiff$langadd.1 $destdir/$vimdiffname.1 118 cp $helpsource/xxd$langadd.1 $destdir/xxd.1
|
| H A D | if_cscope.c | 1620 static char **cp = NULL; in cs_manage_matches() local 1630 if (mp != NULL || cp != NULL) in cs_manage_matches() 1633 cp = contexts; in cs_manage_matches() 1651 if (cp != NULL) in cs_manage_matches() 1652 vim_free(cp[cnt]); in cs_manage_matches() 1655 vim_free(cp); in cs_manage_matches() 1658 cp = NULL; in cs_manage_matches() 1663 cs_print_tags_priv(mp, cp, cnt); in cs_manage_matches()
|
| /vim-8.2.3635/src/libvterm/ |
| H A D | find-wide-chars.pl | 10 my ( $cp ) = @_; 11 return chr($cp) =~ m/\p{East_Asian_Width=Wide}|\p{East_Asian_Width=Fullwidth}/; 15 foreach my $cp ( 0 .. 0x1FFFF ) { 16 iswide($cp) or next; 18 if( defined $end and $end == $cp-1 ) { 20 $end = $cp; 27 $start = $end = $cp;
|
| H A D | Makefile | 117 cp LICENSE CONTRIBUTING __distdir 119 cp src/*.c src/*.h src/*.inc __distdir/src 121 cp src/encoding/*.inc __distdir/src/encoding 123 cp include/*.h __distdir/include 125 cp bin/*.c __distdir/bin 127 cp t/*.test t/harness.c t/run-test.pl __distdir/t
|
| /vim-8.2.3635/src/proto/ |
| H A D | winclip.pro | 4 void MultiByteToWideChar_alloc(UINT cp, DWORD flags, LPCSTR in, int inlen, LPWSTR *out, int *outlen… 5 void WideCharToMultiByte_alloc(UINT cp, DWORD flags, LPCWSTR in, int inlen, LPSTR *out, int *outlen…
|
| /vim-8.2.3635/src/po/ |
| H A D | Makefile | 78 cp $$lang.mo $$dir/$(PACKAGE).mo; \ 94 cp no.po nb.po 229 if test ! -f [email protected]; then cp [email protected] [email protected]; fi
|
| /vim-8.2.3635/runtime/lang/ |
| H A D | menu_ko_kr.utf-8.vim | 74 menutrans Toggle\ Vi\ C&ompatible<Tab>:set\ cp! Vi\ 호환\ 토글(&o)<Tab>:set\ cp! 161 menutrans &Previous\ Error<Tab>:cp 이전\ 에러(&P)<Tab>:cp
|
| H A D | menu_sr_rs.iso_8859-5.vim | 80 menutrans Toggle\ Vi\ C&ompatibility<Tab>:set\ cp! '&Vi'\ ��������\ (��/��)<Tab>:set\ cp! 124 menutrans &Previous\ Error<Tab>:cp ���&������\ ������<Tab>:cp
|