Home
last modified time | relevance | path

Searched refs:utf_fold (Results 1 – 9 of 9) sorted by relevance

/vim-8.2.3635/src/
H A Dspell.h259 # define SPELL_TOFOLD(c) (enc_utf8 && (c) >= 128 ? utf_fold(c) \
262 # define SPELL_TOFOLD(c) (enc_utf8 && (c) >= 128 ? utf_fold(c) \
H A Dregexp.c1623 if (c1 != c2 && (!rex.reg_ic || utf_fold(c1) != utf_fold(c2))) in cstrncmp()
1631 && (!rex.reg_ic || utf_fold(c11) != utf_fold(c12))) in cstrncmp()
1659 cc = utf_fold(c); in cstrchr()
1674 if (utf_fold(utf_ptr2char(p)) == cc) in cstrchr()
H A Dmbyte.c3171 utf_fold(int a) in utf_fold() function
3633 cdiff = utf_fold(c1) - utf_fold(c2); in utf_strnicmp()
3657 n1 = utf_char2bytes(utf_fold(c1), buffer); in utf_strnicmp()
3662 n2 = utf_char2bytes(utf_fold(c2), buffer); in utf_strnicmp()
H A Dmacros.h96 #define MB_CASEFOLD(c) (enc_utf8 ? utf_fold(c) : MB_TOLOWER(c))
H A Dregexp_bt.c3045 cf = utf_fold(utf_ptr2char(opnd)); in regrepeat()
3052 || utf_fold(utf_ptr2char(scan)) != cf)) in regrepeat()
4938 && (((enc_utf8 && utf_fold(prog->regstart) == utf_fold(c))) in bt_regexec_both()
H A Ddiff.c1999 || utf_fold(utf_ptr2char(p1)) in diff_equal_char()
2000 != utf_fold(utf_ptr2char(p2)))) in diff_equal_char()
H A Dspell.c2595 int f = utf_fold(i); in init_spell_chartab()
/vim-8.2.3635/src/proto/
H A Dmbyte.pro45 int utf_fold(int a);
/vim-8.2.3635/runtime/doc/
H A Dversion8.txt12420 Problem: When ignoring case utf_fold() may consume a lot of time.
46959 Solution: Use utf_fold() when possible. (ref. neovim #12456)