Home
last modified time | relevance | path

Searched refs:fill_utf8 (Results 1 – 4 of 4) sorted by relevance

/vim-8.2.3635/src/libvterm/src/
H A Dmouse.c30 len += fill_utf8((code | modifiers) + 0x20, utf8 + len); in output_mouse()
31 len += fill_utf8(col + 0x21, utf8 + len); in output_mouse()
32 len += fill_utf8(row + 0x21, utf8 + len); in output_mouse()
H A Dutf8.h20 int fill_utf8(long codepoint, char *str);
23 INLINE int fill_utf8(long codepoint, char *str) in fill_utf8() function
H A Dkeyboard.c31 int seqlen = fill_utf8(c, str); in vterm_keyboard_unichar()
H A Dscreen.c771 outpos += fill_utf8((c), (char *)buffer + outpos); \ in _get_chars()