Home
last modified time | relevance | path

Searched refs:p1 (Results 1 – 25 of 43) sorted by relevance

12

/vim-8.2.3635/runtime/doc/
H A Ddoctags.c21 char *p1, *p2; in main() local
43 while (p1 != NULL) in main()
48 for (p = p1 + 1; p < p2; ++p) in main()
57 && (p1 == line || p1[-1] == ' ' || p1[-1] == '\t') in main()
62 ++p1; in main()
63 printf("%s\t%s\t/*", p1, argv[0]); in main()
64 while (*p1) in main()
67 if (*p1 == '\\' || *p1 == '/') in main()
69 putchar(*p1); in main()
70 ++p1; in main()
[all …]
H A Dos_390.txt49 set t_AB=[4%p1%dm
50 set t_AF=[3%p1%dm
H A Dsyntax.txt5576 : set t_Sf=<Esc>[3%p1%dm
5577 : set t_Sb=<Esc>[4%p1%dm
5594 :set t_AB=<Esc>[%?%p1%{8}%<%t25;%p1%{40}%+%e5;%p1%{32}%+%;%dm
5595 :set t_AF=<Esc>[%?%p1%{8}%<%t22;%p1%{30}%+%e1;%p1%{22}%+%;%dm
5622 : set t_AB=<Esc>[%?%p1%{8}%<%t%p1%{40}%+%e%p1%{92}%+%;%dm
5623 : set t_AF=<Esc>[%?%p1%{8}%<%t%p1%{30}%+%e%p1%{82}%+%;%dm
5684 : set t_Sf=<Esc>[&v%p1%dS
5698 :set t_AF=^[[%?%p1%{8}%<%t3%p1%d%e%p1%{22}%+%d;1%;m
5699 :set t_AB=^[[%?%p1%{8}%<%t4%p1%d%e%p1%{32}%+%d;1%;m
5705 set t_AB=^[[%?%p1%{8}%<%t%p1%{40}%+%e%p1%{32}%+5;%;%dm
[all …]
/vim-8.2.3635/src/
H A Dos_win32.h168 # define TRACE1(sz, p1) Trace(_T(sz), p1) argument
169 # define TRACE2(sz, p1, p2) Trace(_T(sz), p1, p2) argument
170 # define TRACE3(sz, p1, p2, p3) Trace(_T(sz), p1, p2, p3) argument
171 # define TRACE4(sz, p1, p2, p3, p4) Trace(_T(sz), p1, p2, p3, p4) argument
183 # define TRACE1(sz, p1) argument
184 # define TRACE2(sz, p1, p2) argument
185 # define TRACE3(sz, p1, p2, p3) argument
186 # define TRACE4(sz, p1, p2, p3, p4) argument
H A Dhelp.c296 char *p1; in help_compare() local
304 cmp = strcmp(p1, p2); in help_compare()
965 char_u *p1, *p2; in helptags_one() local
1072 while (p1 != NULL) in helptags_one()
1088 && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t') in helptags_one()
1093 ++p1; in helptags_one()
1113 p1 = p2; in helptags_one()
1134 while (*p1 == *p2) in helptags_one()
1146 ++p1; in helptags_one()
1164 for (p1 = s; *p1 != '\t'; ++p1) in helptags_one()
[all …]
H A Dcrypt.c641 char_u *p1, *p2 = NULL; in crypt_get_key() local
648 p1 = getcmdline_prompt(NUL, round == 0 in crypt_get_key()
654 if (p1 == NULL) in crypt_get_key()
662 crypt_free_key(p1); in crypt_get_key()
672 crypt_free_key(p1); in crypt_get_key()
673 p1 = curbuf->b_p_key; in crypt_get_key()
680 p2 = p1; in crypt_get_key()
693 return p1; in crypt_get_key()
829 char_u *p1 = from;
859 if (p1 == p2)
[all …]
H A Ddiff.c1990 int l = (*mb_ptr2len)(p1); in diff_equal_char()
1996 if (STRNCMP(p1, p2, l) != 0 in diff_equal_char()
2006 if ((*p1 != *p2) in diff_equal_char()
2022 char_u *p1, *p2; in diff_cmp() local
2034 p1 = s1; in diff_cmp()
2045 p1 = skipwhite(p1); in diff_cmp()
2052 p1 += l; in diff_cmp()
2058 p1 = skipwhite(p1); in diff_cmp()
2401 char_u *p1, *p2; in diff_find_change() local
2495 p1 = line_org + ei_org; in diff_find_change()
[all …]
H A Dstrings.c310 char_u *p1; in vim_strsave_up() local
312 p1 = vim_strsave(string); in vim_strsave_up()
313 vim_strup(p1); in vim_strsave_up()
314 return p1; in vim_strsave_up()
324 char_u *p1; in vim_strnsave_up() local
327 vim_strup(p1); in vim_strnsave_up()
328 return p1; in vim_strnsave_up()
2151 char_u *p1; in vim_vsnprintf_typval() local
2154 for (p1 = (char_u *)str_arg; *p1; in vim_vsnprintf_typval()
2155 p1 += mb_ptr2len(p1)) in vim_vsnprintf_typval()
[all …]
H A Dprofiler.c506 ufunc_T *p1, *p2; in prof_total_cmp() local
508 p1 = *(ufunc_T **)s1; in prof_total_cmp()
510 return profile_cmp(&p1->uf_tm_total, &p2->uf_tm_total); in prof_total_cmp()
519 ufunc_T *p1, *p2; in prof_self_cmp() local
521 p1 = *(ufunc_T **)s1; in prof_self_cmp()
523 return profile_cmp(&p1->uf_tm_self, &p2->uf_tm_self); in prof_self_cmp()
H A Dex_cmds.c4008 char_u *p1; in ex_substitute() local
4437 p1 = sub_firstline; in ex_substitute()
4496 new_start = p1; in ex_substitute()
4551 for (p1 = new_end; *p1; ++p1) in ex_substitute()
4553 if (p1[0] == '\\' && p1[1] != NUL) // remove backslash in ex_substitute()
4555 STRMOVE(p1, p1 + 1); in ex_substitute()
4562 (colnr_T)(p1 - new_start), -1, in ex_substitute()
4568 else if (*p1 == CAR) in ex_substitute()
4595 STRMOVE(new_start, p1 + 1); in ex_substitute()
4596 p1 = new_start - 1; in ex_substitute()
[all …]
H A Dmacros.h224 # define UTF_COMPOSINGLIKE(p1, p2) utf_composinglike((p1), (p2)) argument
226 # define UTF_COMPOSINGLIKE(p1, p2) utf_iscomposing(utf_ptr2char(p2)) argument
H A Dlist.c1829 char_u *p1, *p2; in item_compare() local
1864 p1 = (char_u *)"'"; in item_compare()
1866 p1 = tv1->vval.v_string; in item_compare()
1869 p1 = tv2string(tv1, &tofree1, numbuf1, 0); in item_compare()
1879 if (p1 == NULL) in item_compare()
1880 p1 = (char_u *)""; in item_compare()
1886 res = strcoll((char *)p1, (char *)p2); in item_compare()
1888 res = sortinfo->item_compare_ic ? STRICMP(p1, p2): STRCMP(p1, p2); in item_compare()
1893 n1 = strtod((char *)p1, (char **)&p1); in item_compare()
H A Dcmdexpand.c33 char_u *p1 = *(char_u **)s1; in sort_func_compare() local
36 if (*p1 != '<' && *p2 == '<') return -1; in sort_func_compare()
37 if (*p1 == '<' && *p2 != '<') return 1; in sort_func_compare()
38 return STRCMP(p1, p2); in sort_func_compare()
144 char_u *p1; in nextwild() local
180 if ((p1 = addstar(xp->xp_pattern, xp->xp_pattern_len, in nextwild()
192 p2 = ExpandOne(xp, p1, in nextwild()
195 vim_free(p1); in nextwild()
H A Dspellfile.c4821 wordnode_T *p1; in node_equal() local
4824 for (p1 = n1, p2 = n2; p1 != NULL && p2 != NULL; in node_equal()
4825 p1 = p1->wn_sibling, p2 = p2->wn_sibling) in node_equal()
4826 if (p1->wn_byte != p2->wn_byte in node_equal()
4827 || (p1->wn_byte == NUL in node_equal()
4828 ? (p1->wn_flags != p2->wn_flags in node_equal()
4829 || p1->wn_region != p2->wn_region in node_equal()
4830 || p1->wn_affixID != p2->wn_affixID) in node_equal()
4831 : (p1->wn_child != p2->wn_child))) in node_equal()
4834 return p1 == NULL && p2 == NULL; in node_equal()
[all …]
H A Dscriptfile.c479 char_u *p4, *p3, *p2, *p1, *p; in add_pack_dir_to_rtp() local
498 p4 = p3 = p2 = p1 = get_past_head(fname); in add_pack_dir_to_rtp()
499 for (p = p1; *p; MB_PTR_ADV(p)) in add_pack_dir_to_rtp()
502 p4 = p3; p3 = p2; p2 = p1; p1 = p; in add_pack_dir_to_rtp()
H A Dmisc1.c2599 char_u *p1, *p2; in get_isolated_shell_name() local
2602 p1 = p_sh; in get_isolated_shell_name()
2605 p1 = p2 + 1; in get_isolated_shell_name()
2606 p = vim_strnsave(p1, p - p1); in get_isolated_shell_name()
H A Ddrawline.c1131 char_u *p1, *p2; in win_line() local
1137 for (p1 = skipwhite(extra); p1 < p2; ++p1, --p2) in win_line()
1139 t = *p1; in win_line()
1140 *p1 = *p2; in win_line()
H A Dmisc2.c2451 char_u *p1; in qsort() local
2465 p1 = (char_u *)base + j * elm_size; in qsort()
2467 if ((*cmp)((void *)p1, (void *)p2) <= 0) in qsort()
2470 mch_memmove(buf, p1, elm_size); in qsort()
2471 mch_memmove(p1, p2, elm_size); in qsort()
H A Dos_vms_fix.com52 $ all = "''p1'''p2'''p3'''p4'''p5'''p6'''p7'''p8'"
H A Dscreen.c832 char_u *p1, *p2; in rl_mirror() local
835 for (p1 = str, p2 = str + STRLEN(str) - 1; p1 < p2; ++p1, --p2) in rl_mirror()
837 t = *p1; in rl_mirror()
838 *p1 = *p2; in rl_mirror()
H A Dterminal.c5429 char_u *p1; in term_load_dump() local
5441 p1 = line1; in term_load_dump()
5445 for (col = 0; col < width && *p1 != NUL && *p2 != NUL; ++col) in term_load_dump()
5447 int len1 = utfc_ptr2len(p1); in term_load_dump()
5451 if (len1 != len2 || STRNCMP(p1, p2, len1) != 0) in term_load_dump()
5481 p1 += len1; in term_load_dump()
5488 if (*p1 == NUL && *p2 == NUL) in term_load_dump()
5490 else if (*p1 == NUL) in term_load_dump()
5498 p1 += utfc_ptr2len(p1); in term_load_dump()
/vim-8.2.3635/runtime/compiler/
H A Dg95.vim22 \%-C%p1,
/vim-8.2.3635/
H A Dvimtutor.com82 $ vim -u "NONE" -c "set nocp" 'p1' 'p2' 'p3' 'p4' 'p5' 'p6' 'p7' 'p8' 'tutfil'
/vim-8.2.3635/runtime/syntax/
H A Dtssgm.vim34 syn keyword tssgmParam p1 p2 p3 p4 p5 p6 rot1 rot2 rot3 tx ty tz
/vim-8.2.3635/src/proto/
H A Dmbyte.pro28 int utf_composinglike(char_u *p1, char_u *p2);

12