• Home
  • Raw
  • Download

Lines Matching refs:utf8_codepoint

276     tty->tty.wr.utf8_codepoint = 0;  in uv_tty_init()
1699 unsigned int utf8_codepoint = handle->tty.wr.utf8_codepoint; local
1731 utf8_codepoint = (unsigned int) c;
1735 utf8_codepoint = (0xff >> (8 - first_zero_bit)) & c;
1740 utf8_codepoint = UNICODE_REPLACEMENT_CHARACTER;
1745 utf8_codepoint = UNICODE_REPLACEMENT_CHARACTER;
1751 utf8_codepoint <<= 6;
1752 utf8_codepoint |= ((unsigned int) c & 0x3f);
1757 utf8_codepoint = UNICODE_REPLACEMENT_CHARACTER;
1772 switch (utf8_codepoint) {
1784 switch (utf8_codepoint) {
1825 if (utf8_codepoint >= '@' && utf8_codepoint <= '_') {
1837 if (utf8_codepoint >= '@' && utf8_codepoint <= '~') {
1845 if (utf8_codepoint >= '@' && utf8_codepoint <= '~') {
1847 if (utf8_codepoint == 'q') {
1869 if (utf8_codepoint >= '0' && utf8_codepoint <= '9') {
1882 (unsigned short) utf8_codepoint - '0';
1897 (unsigned short) value + (utf8_codepoint - '0');
1901 } else if (utf8_codepoint == ';') {
1924 } else if (utf8_codepoint == '?' &&
1934 } else if (utf8_codepoint == ' ' &&
1941 } else if (utf8_codepoint >= '@' && utf8_codepoint <= '~') {
1945 switch (utf8_codepoint) {
1968 switch (utf8_codepoint) {
2095 if (utf8_codepoint == '"') {
2097 } else if (utf8_codepoint == '\\') {
2104 if (utf8_codepoint == '\007' || (utf8_codepoint == '\\' &&
2108 } else if (utf8_codepoint == '\033') {
2111 } else if (utf8_codepoint == '"') {
2126 if (utf8_codepoint == 0x0a || utf8_codepoint == 0x0d) {
2129 if (utf8_codepoint == 0x0a && previous_eol != 0x0d) {
2134 } else if (utf8_codepoint == 0x0d && previous_eol == 0x0a) {
2142 utf16_buf[utf16_buf_used++] = (WCHAR) utf8_codepoint;
2145 previous_eol = (char) utf8_codepoint;
2147 } else if (utf8_codepoint <= 0xffff) {
2150 utf16_buf[utf16_buf_used++] = (WCHAR) utf8_codepoint;
2154 utf8_codepoint -= 0x10000;
2155 utf16_buf[utf16_buf_used++] = (WCHAR) (utf8_codepoint / 0x400 + 0xD800);
2156 utf16_buf[utf16_buf_used++] = (WCHAR) (utf8_codepoint % 0x400 + 0xDC00);
2167 handle->tty.wr.utf8_codepoint = utf8_codepoint;