| /vim-8.2.3635/src/ |
| H A D | textformat.c | 47 int cc; in internal_format() local 70 cc = gchar_cursor(); in internal_format() 71 if (VIM_ISWHITE(cc)) in internal_format() 73 save_char = cc; in internal_format() 140 cc = c; in internal_format() 228 ncc = cc; in internal_format() 234 if (WHITECHAR(cc)) in internal_format() 276 cc = ncc; in internal_format() 321 while ((cc = gchar_cursor(), WHITECHAR(cc)) in internal_format() 629 int cc; in auto_format() local [all …]
|
| H A D | edit.c | 1867 int cc; in get_literal() local 1891 cc = 0; in get_literal() 1915 cc = cc * 16 + hex2nr(nc); in get_literal() 1921 cc = cc * 8 + nc - '0'; in get_literal() 1927 cc = cc * 10 + nc - '0'; in get_literal() 1965 cc = '\n'; in get_literal() 2253 int cc; in insertchar() local 2415 int cc; in stop_insert() local 3174 int cc; in replace_do_bs() local 4056 cc = -1; in ins_bs() [all …]
|
| H A D | mbyte.c | 1944 int cc; in utfc_ptr2char() local 1958 pcc[i++] = cc; in utfc_ptr2char() 1985 int cc; in utfc_ptr2char_len() local 1999 pcc[i++] = cc; in utfc_ptr2char_len() 3912 return ((cc >= 0x2000 && cc <= 0x206F) // General punctuations in utf_eat_space() 3913 || (cc >= 0x2e00 && cc <= 0x2e7f) // Supplemental punctuations in utf_eat_space() 3914 || (cc >= 0x3000 && cc <= 0x303f) // CJK symbols and punctuations in utf_eat_space() 3916 || (cc >= 0xff1a && cc <= 0xff20) // .. in utf_eat_space() 3917 || (cc >= 0xff3b && cc <= 0xff40) // .. in utf_eat_space() 3918 || (cc >= 0xff5b && cc <= 0xff65)); // .. in utf_eat_space() [all …]
|
| H A D | osdef.sh | 15 CC=cc 55 $CC -I. -I$srcdir -E osdef0.c >osdef0.cc 59 sed < osdef0.cc -e '/\(..*\)/s// \1/' > osdef0.ccc 82 rm osdef0.c osdef0.cc osdef0.ccc osdef11.sed osdef21.sed osdef2.sed
|
| H A D | regexp.c | 1650 int cc; in cstrchr() local 1659 cc = utf_fold(c); in cstrchr() 1662 cc = MB_TOLOWER(c); in cstrchr() 1664 cc = MB_TOUPPER(c); in cstrchr() 1684 if (*p == c || *p == cc) in cstrchr() 1969 int cc; in vim_regsub_both() local 2210 cc = c; in vim_regsub_both() 2217 mb_char2bytes(cc, dst); in vim_regsub_both() 2236 *dst = cc; in vim_regsub_both() 2323 cc = c; in vim_regsub_both() [all …]
|
| H A D | digraph.c | 1860 int c, cc; in get_digraph() local 1886 cc = plain_vgetc(); in get_digraph() 1889 if (cc != ESC) // ESC cancels CTRL-K in get_digraph() 1890 return digraph_get(c, cc, TRUE); in get_digraph()
|
| H A D | Make_all.mak | 8 *.cc \
|
| H A D | evalvars.c | 1655 int cc; in do_unlet_var() local 1659 cc = *name_end; in do_unlet_var() 1667 *name_end = cc; in do_unlet_var() 1813 int cc; in do_lock_var() local 1818 cc = *name_end; in do_lock_var() 1850 *name_end = cc; in do_lock_var() 2573 int cc; in eval_variable() local 2577 cc = name[len]; in eval_variable() 2710 name[len] = cc; in eval_variable() 2722 int cc; in check_vars() local [all …]
|
| /vim-8.2.3635/runtime/tools/ |
| H A D | ccfilter_README.txt | 15 cc ccfilter.c -o ccfilter 18 cc -D_GCC ccfilter.c -o ccfilter 19 cc -D_AIX ccfilter.c -o ccfilter 20 cc -D_ATT ccfilter.c -o ccfilter 21 cc -D_IRIX ccfilter.c -o ccfilter 22 cc -D_SOLARIS ccfilter.c -o ccfilter 23 cc -D_HPUX ccfilter.c -o ccfilter 65 - ^cc: "<FILE>", line <ROW>: <SEVERITY>: <REASON>^
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | ninja.vim | 12 " https://github.com/ninja-build/ninja/blob/master/src/lexer.in.cc 13 " https://github.com/ninja-build/ninja/blob/master/src/manifest_parser.cc 31 " lexer.in.cc, ReadToken() and manifest_parser.cc, Parse() 43 " manifest_parser.cc, ParseRule() 53 " lexer.in.cc, ReadEvalString()
|
| H A D | git.vim | 23 syn region gitDiff start=/^\%(@@ -\)\@=/ end=/^\%(diff --\%(git\|cc\|combined\) \|$\)\@=/ contains=… 25 syn region gitDiffMerge start=/^\%(diff --\%(cc\|combined\) \)\@=/ end=/^\%(diff --\|$\)\@=/ contai…
|
| H A D | mf.vim | 244 syn match mfLength "\<\(bp\|cc\|cm\|dd\|in\|mm\|pc\|pt\)\>" 245 syn match mfLength "[-]\=\d\+\(bp\|cc\|cm\|dd\|in\|mm\|pc\|pt\)\#\=" 246 syn match mfLength "[-]\=\.\d\+\(bp\|cc\|cm\|dd\|in\|mm\|pc\|pt\)\#\=" 247 syn match mfLength "[-]\=\d\+\.\d\+\(bp\|cc\|cm\|dd\|in\|mm\|pc\|pt\)\#\="
|
| /vim-8.2.3635/runtime/macros/maze/ |
| H A D | Makefile | 4 cc -o maze mazeansi.c 7 cc -o mazeclean mazeclean.c
|
| /vim-8.2.3635/src/proto/ |
| H A D | mbyte.pro | 55 int utf_eat_space(int cc); 56 int utf_allow_break_before(int cc); 57 int utf_allow_break(int cc, int ncc);
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_sort.vim | 1204 \ 'cc', 1205 \ 'cc', 1210 \ 'cc', 1499 call setline(1, ['cc', 'aa', 'bb']) 1502 call assert_equal(['aa', 'bb', 'cc'], getline(1, '$')) 1539 call setline(1, ['cc', 'aa', 'bb']) 1544 call assert_equal(['aa', 'bb', 'cc'], getline(1, '$'))
|
| H A D | test_json.vim | 50 let s:jsond2 = '{"1":1,"2":{"a":"aa","b":{},"c":"cc"},"3":3}' 51 let s:jsd2 = '{"1":1,"2":{a:"aa",b:{},c:"cc"},"3":3}' 52 let s:jsond2s = " { \"1\" : 1 , \"2\" :\n{ \"a\"\r: \"aa\" , \"b\" : {\<Tab>} , \"c\" : \"cc\" } ,… 53 let s:jsd2s = " { \"1\" : 1 , \"2\" :\n{ a\r: \"aa\" , b : {\<Tab>} , c : \"cc\" } , \"3\" : 3 }\r… 55 let d2 = {"a": "aa", "b": s:vard2, "c": "cc"} 57 let s:vard2x = {"1": 1, "2": {"a": "aa", "b": {}, "c": "cc"}, "3": 3}
|
| H A D | test_tcl.vim | 112 set cc=3,5 114 " Test getting option 'cc' 115 call assert_equal('3,5', TclEval('::vim::option cc')) 116 call assert_equal('3,5', &cc) 118 " Test setting option 'cc' (it returns the old option value) 119 call assert_equal('3,5', TclEval('::vim::option cc +4')) 120 call assert_equal('+4', &cc) 121 call assert_equal('+4', TclEval('::vim::option cc')) 138 set cc&
|
| H A D | test_textformat.vim | 492 \ "cc cc cc cc" 501 \ "cc cc cc cc",
|
| H A D | test_listlbr_utf8.vim | 186 …call s:test_windows("setl nolinebreak cc=3 list listchars=nbsp:\u2423,tab:\u2595\u2014,trail:\u02d… 209 call s:test_windows('setl cc=4 cuc hls') 215 let line_attr = s:screen_attr(1, [1, &cc])
|
| H A D | test_command_count.vim | 161 next aa bb cc dd ee ff 167 call assert_equal(['cc', 'dd', 'ee'], args)
|
| H A D | test_fold.vim | 488 let content = ['1 aa', '2 bb', '3 cc'] 496 call assert_equal('3 cc', getline('.')) 622 let content = ['1 aa', '2 bb', '3 cc'] 645 let content = ['3 cc', '4 dd {{{', '5 ee {{{ }}}', '{{{{', '6 ff }}}', 651 call assert_equal('3 cc', getline('.')) 686 \ '3 cc', 859 \ '" cc', 867 \ '" cc',
|
| /vim-8.2.3635/src/GvimExt/ |
| H A D | Makefile | 47 cc = cl macro 87 $(cc) $(cflags) -DFEAT_GETTEXT $(cvarsmt) $*.cpp
|
| /vim-8.2.3635/runtime/spell/fr/ |
| H A D | fr_FR.diff | 57 - REP cc c 58 - REP c cc
|
| /vim-8.2.3635/READMEdir/ |
| H A D | README_os390.txt | 47 $ export CC=cc 89 $ export CC=cc
|
| /vim-8.2.3635/src/xxd/ |
| H A D | Make_amiga.mak | 18 cc $(CFLAGS) xxd.c -o xxd.o
|