Home
last modified time | relevance | path

Searched refs:utf_8 (Results 1 – 7 of 7) sorted by relevance

/external/libpcap/
Dfmtutils.c104 utf_16le_to_utf_8_truncated(const wchar_t *utf_16, char *utf_8, in utf_16le_to_utf_8_truncated() argument
115 return (utf_8); in utf_16le_to_utf_8_truncated()
198 *utf_8++ = (char)uc; in utf_16le_to_utf_8_truncated()
209 *utf_8++ = ((uc >> 6) & 0x3F) | 0xC0; in utf_16le_to_utf_8_truncated()
210 *utf_8++ = ((uc >> 0) & 0x3F) | 0x80; in utf_16le_to_utf_8_truncated()
221 *utf_8++ = ((uc >> 12) & 0x0F) | 0xE0; in utf_16le_to_utf_8_truncated()
222 *utf_8++ = ((uc >> 6) & 0x3F) | 0x80; in utf_16le_to_utf_8_truncated()
223 *utf_8++ = ((uc >> 0) & 0x3F) | 0x80; in utf_16le_to_utf_8_truncated()
234 *utf_8++ = ((uc >> 18) & 0x03) | 0xF0; in utf_16le_to_utf_8_truncated()
235 *utf_8++ = ((uc >> 12) & 0x3F) | 0x80; in utf_16le_to_utf_8_truncated()
[all …]
/external/python/setuptools/setuptools/tests/
Dtext.py9 utf_8 = unicode.encode('utf-8') variable in Filenames
Dtest_sdist.py209 filename = os.path.join(b'sdist_test', Filenames.utf_8)
282 filename = os.path.join(b'sdist_test', Filenames.utf_8)
342 filename = os.path.join(b'sdist_test', Filenames.utf_8)
/external/python/cpython3/Doc/library/
Dcodecs.rst651 easily. See :mod:`encodings.utf_8` for an example of how this is done.
982 e.g. ``'utf-8'`` is a valid alias for the ``'utf_8'`` codec.
1234 | utf_8 | U8, UTF, utf8, cp65001 | all languages |
1246 ``cp65001`` is now an alias to ``utf_8``.
/external/python/cpython2/Doc/library/
Dcodecs.rst544 easily. See :mod:`encodings.utf_8` for an example of how this is done.
903 e.g. ``'utf-8'`` is a valid alias for the ``'utf_8'`` codec.
1125 | utf_8 | U8, UTF, utf8 | all languages |
/external/python/cpython3/Lib/test/
Dtest_codecs.py3233 encodings.utf_8.StreamReader, encodings.utf_8.StreamWriter)
/external/python/cpython3/Misc/NEWS.d/
D3.8.0b1.rst1038 ``cp65001`` encoding (Windows code page 65001) becomes an alias to ``utf_8``