Lines Matching refs:utf8_codepoint

271     tty->tty.wr.utf8_codepoint = 0;  in uv_tty_init()
1688 unsigned int utf8_codepoint = handle->tty.wr.utf8_codepoint; local
1720 utf8_codepoint = (unsigned int) c;
1724 utf8_codepoint = (0xff >> (8 - first_zero_bit)) & c;
1729 utf8_codepoint = UNICODE_REPLACEMENT_CHARACTER;
1734 utf8_codepoint = UNICODE_REPLACEMENT_CHARACTER;
1740 utf8_codepoint <<= 6;
1741 utf8_codepoint |= ((unsigned int) c & 0x3f);
1746 utf8_codepoint = UNICODE_REPLACEMENT_CHARACTER;
1761 switch (utf8_codepoint) {
1773 switch (utf8_codepoint) {
1814 if (utf8_codepoint >= '@' && utf8_codepoint <= '_') {
1826 if (utf8_codepoint >= '@' && utf8_codepoint <= '~') {
1834 if (utf8_codepoint >= '@' && utf8_codepoint <= '~') {
1836 if (utf8_codepoint == 'q') {
1858 if (utf8_codepoint >= '0' && utf8_codepoint <= '9') {
1871 (unsigned short) utf8_codepoint - '0';
1886 (unsigned short) value + (utf8_codepoint - '0');
1890 } else if (utf8_codepoint == ';') {
1913 } else if (utf8_codepoint == '?' &&
1923 } else if (utf8_codepoint == ' ' &&
1930 } else if (utf8_codepoint >= '@' && utf8_codepoint <= '~') {
1934 switch (utf8_codepoint) {
1957 switch (utf8_codepoint) {
2084 if (utf8_codepoint == '"') {
2086 } else if (utf8_codepoint == '\\') {
2093 if (utf8_codepoint == '\007' || (utf8_codepoint == '\\' &&
2097 } else if (utf8_codepoint == '\033') {
2100 } else if (utf8_codepoint == '"') {
2115 if (utf8_codepoint == 0x0a || utf8_codepoint == 0x0d) {
2118 if (utf8_codepoint == 0x0a && previous_eol != 0x0d) {
2123 } else if (utf8_codepoint == 0x0d && previous_eol == 0x0a) {
2131 utf16_buf[utf16_buf_used++] = (WCHAR) utf8_codepoint;
2134 previous_eol = (char) utf8_codepoint;
2136 } else if (utf8_codepoint <= 0xffff) {
2139 utf16_buf[utf16_buf_used++] = (WCHAR) utf8_codepoint;
2143 utf8_codepoint -= 0x10000;
2144 utf16_buf[utf16_buf_used++] = (WCHAR) (utf8_codepoint / 0x400 + 0xD800);
2145 utf16_buf[utf16_buf_used++] = (WCHAR) (utf8_codepoint % 0x400 + 0xDC00);
2156 handle->tty.wr.utf8_codepoint = utf8_codepoint;