Searched refs:unicode_char (Results 1 – 13 of 13) sorted by relevance
/external/grpc-grpc/src/core/lib/json/ |
D | json_reader.cc | 400 reader->unicode_char = 0; in grpc_json_reader_run() 420 reader->unicode_char = in grpc_json_reader_run() 421 static_cast<uint16_t>(reader->unicode_char << 4); in grpc_json_reader_run() 422 reader->unicode_char = in grpc_json_reader_run() 423 static_cast<uint16_t>(reader->unicode_char | c); in grpc_json_reader_run() 439 if ((reader->unicode_char & 0xfc00) == 0xd800) { in grpc_json_reader_run() 443 reader->unicode_high_surrogate = reader->unicode_char; in grpc_json_reader_run() 444 } else if ((reader->unicode_char & 0xfc00) == 0xdc00) { in grpc_json_reader_run() 452 utf32 += static_cast<uint32_t>(reader->unicode_char - 0xdc00); in grpc_json_reader_run() 459 json_reader_string_add_utf32(reader, reader->unicode_char); in grpc_json_reader_run()
|
D | json_reader.h | 106 uint16_t unicode_char, unicode_high_surrogate; member
|
/external/u-boot/lib/efi_selftest/ |
D | efi_selftest_textinput.c | 78 (unsigned int)input_key.unicode_char, in execute() 79 efi_st_translate_char(input_key.unicode_char), in execute() 83 switch (input_key.unicode_char) { in execute()
|
D | efi_selftest_textinputex.c | 57 .unicode_char = 0x18 in setup() 161 (unsigned int)input_key.key.unicode_char, in execute() 162 efi_st_translate_char(input_key.key.unicode_char), in execute()
|
D | efi_selftest_console.c | 254 return input_key.unicode_char; in efi_st_get_key()
|
/external/python/cpython3/PC/clinic/ |
D | msvcrtmodule.c.h | 397 msvcrt_putwch_impl(PyObject *module, int unicode_char); 403 int unicode_char; in msvcrt_putwch() local 416 unicode_char = PyUnicode_READ_CHAR(arg, 0); in msvcrt_putwch() 417 return_value = msvcrt_putwch_impl(module, unicode_char); in msvcrt_putwch() 471 msvcrt_ungetwch_impl(PyObject *module, int unicode_char); 477 int unicode_char; in msvcrt_ungetwch() local 490 unicode_char = PyUnicode_READ_CHAR(arg, 0); in msvcrt_ungetwch() 491 return_value = msvcrt_ungetwch_impl(module, unicode_char); in msvcrt_ungetwch()
|
/external/u-boot/lib/efi_loader/ |
D | efi_console.c | 554 .unicode_char = 0, in efi_cin_read_key() 666 pressed_key.unicode_char = ch; in efi_cin_read_key() 700 if (item->key.key.unicode_char || item->key.key.scan_code) { in efi_cin_notify() 701 if (item->key.key.unicode_char != in efi_cin_notify() 702 next_key.key.unicode_char || in efi_cin_notify() 828 switch (next_key.key.unicode_char) { in efi_cin_read_key_stroke_ex() 836 next_key.key.unicode_char += 0x40; in efi_cin_read_key_stroke_ex() 838 next_key.key.unicode_char += 0x60; in efi_cin_read_key_stroke_ex() 911 key_data->key.unicode_char, in efi_cin_register_key_notify()
|
/external/python/cpython3/PC/ |
D | msvcrtmodule.c | 334 msvcrt_putwch_impl(PyObject *module, int unicode_char) in msvcrt_putwch_impl() argument 338 _putwch(unicode_char); in msvcrt_putwch_impl() 382 msvcrt_ungetwch_impl(PyObject *module, int unicode_char) in msvcrt_ungetwch_impl() argument 388 res = _ungetwch(unicode_char); in msvcrt_ungetwch_impl()
|
/external/u-boot/drivers/serial/ |
D | serial_efi.c | 58 ch = priv->key.unicode_char; in serial_efi_getc() 67 debug(" [%x %x %x] ", ch, priv->key.unicode_char, priv->key.scan_code); in serial_efi_getc()
|
/external/python/cpython3/Doc/library/ |
D | msvcrt.rst | 129 .. function:: putwch(unicode_char) 140 .. function:: ungetwch(unicode_char)
|
/external/python/cpython2/Doc/library/ |
D | msvcrt.rst | 127 .. function:: putwch(unicode_char) 140 .. function:: ungetwch(unicode_char)
|
/external/u-boot/include/ |
D | efi_api.h | 624 s16 unicode_char; member
|
/external/python/cpython3/Objects/ |
D | unicodeobject.c | 2049 unicode_char(Py_UCS4 ch) in unicode_char() function 2277 return unicode_char(u[0]); in _PyUnicode_FromUCS2() 2303 return unicode_char(u[0]); in _PyUnicode_FromUCS4() 3178 return unicode_char((Py_UCS4)ordinal); in PyUnicode_FromOrdinal() 11665 return unicode_char(ch); in unicode_getitem()
|