Home
last modified time | relevance | path

Searched refs:mb_strnicmp (Results 1 – 14 of 14) sorted by relevance

/dports/editors/vim/vim-8.2.3745/src/proto/
H A Dmbyte.pro50 int mb_strnicmp(char_u *s1, char_u *s2, size_t nn);
/dports/editors/neovim/neovim-0.6.1/src/nvim/
H A Dtag.c1960 if (mb_strnicmp(tagp.tagname, orgpat.head, (size_t)cmplen) != 0) { in find_tags()
1970 if (mb_strnicmp(tagp.tagname, orgpat.head, (size_t)cmplen) != 0) { in find_tags()
1981 if (mb_strnicmp(tagp.tagname, orgpat.head, (size_t)cmplen) != 0) { in find_tags()
2017 match = mb_strnicmp(tagp.tagname, orgpat.pat, (size_t)cmplen) == 0; in find_tags()
H A Dmbyte.c1547 int mb_strnicmp(const char_u *s1, const char_u *s2, const size_t nn) in mb_strnicmp() function
1566 return mb_strnicmp((const char_u *)s1, (const char_u *)s2, MAXCOL); in mb_stricmp()
H A Dpath.c376 return mb_strnicmp((const char_u *)fname1, (const char_u *)fname2, len); in path_fnamencmp()
H A Dsearch.c1511 if ((p_ic ? mb_strnicmp(p, pat, (size_t)compl_length) in search_for_exact_line()
5065 matched = !mb_strnicmp(startp, ptr, len); in find_pattern_in_path()
H A Dedit.c7570 ? mb_strnicmp(s, look, (size_t)(p - look)) in in_cinkeys()
7584 ? mb_strnicmp(line - (p - look), look, (size_t)(p - look)) in in_cinkeys()
H A Dspell.c7068 && mb_strnicmp(word, pat, (size_t)depth) != 0) { in spell_dump_compl()
7152 ? mb_strnicmp(p, pat, STRLEN(pat)) == 0 in dump_word()
H A Dshada.c3985 if (mb_strnicmp((char_u *)NameBuff, (char_u *)new_name, n) == 0) { in shada_removable()
H A Dregexp.c6410 result = mb_strnicmp(s1, s2, (size_t)*n); in cstrncmp()
/dports/editors/vim/vim-8.2.3745/src/
H A Dvim.h1667 # define MB_STRICMP(d, s) mb_strnicmp((char_u *)(d), (char_u *)(s), (int)MAXCOL)
1668 # define MB_STRNICMP(d, s, n) mb_strnicmp((char_u *)(d), (char_u *)(s), (int)(n))
H A Dmbyte.c3697 mb_strnicmp(char_u *s1, char_u *s2, size_t nn) in mb_strnicmp() function
/dports/editors/neovim/neovim-0.6.1/src/nvim/os/
H A Dfs.c329 && 0 == mb_strnicmp((char_u *)nameext, (char_u *)ext, ext_len);
/dports/editors/neovim/neovim-0.6.1/src/nvim/eval/
H A Duserfunc.c2608 && (mb_strnicmp((char_u *)p + 1, (char_u *)"SID>", 4) == 0 in eval_fname_script()
2609 || mb_strnicmp((char_u *)p + 1, (char_u *)"SNR>", 4) == 0)) { in eval_fname_script()
H A Dfuncs.c1347 if (mb_strnicmp(p, expr, len) == 0) { in f_count()