/external/flac/src/plugin_common/ |
D | tags.c | 94 static size_t local__utf8_to_ucs2(const FLAC__byte *utf8, FLAC__uint16 *ucs2) in local__utf8_to_ucs2() argument 98 FLAC__ASSERT(0 != ucs2); in local__utf8_to_ucs2() 101 *ucs2 = *utf8; in local__utf8_to_ucs2() 103 *ucs2 = (*utf8 & 0x3F)<<6 | (*(utf8+1) & 0x3F); in local__utf8_to_ucs2() 105 *ucs2 = (*utf8 & 0x1F)<<12 | (*(utf8+1) & 0x3F)<<6 | (*(utf8+2) & 0x3F); in local__utf8_to_ucs2() 107 *ucs2 = '?'; in local__utf8_to_ucs2() 149 static FLaC__INLINE size_t local__ucs2len(FLAC__uint16 ucs2) in local__ucs2len() argument 151 if (ucs2 < 0x0080) in local__ucs2len() 153 else if (ucs2 < 0x0800) in local__ucs2len() 159 static size_t local__ucs2_to_utf8(FLAC__uint16 ucs2, FLAC__byte *utf8) in local__ucs2_to_utf8() argument [all …]
|
/external/icu/icu4c/source/common/ |
D | ustr_cnv.cpp | 205 const UChar *ucs2, in u_austrncpy() argument 216 &ucs2, in u_austrncpy() 217 ucs2+u_ustrnlen(ucs2, n), in u_austrncpy() 237 const UChar *ucs2 ) in u_austrcpy() argument 245 ucs2, in u_austrcpy()
|
/external/rust/crates/grpcio-sys/grpc/third_party/re2/ |
D | ucs2.diff | 190 - bool ucs2 = prog_->flags() & Regexp::UCS2; 198 - if (!ucs2 && !anchored && first_byte_ >= 0 && runq->size() == 0 && 209 - if(ucs2 && runq->size() == 0 && 218 - if(!ucs2 || (p - context.begin()) % 2 == 0) { 362 - { single_line|Regexp::UCS2, "single-line, ucs2" }, 366 - { multi_line|Regexp::UCS2, "multiline, ucs2" }, 498 - bool ucs2 = false; 508 - ucs2 = true; 520 - if (ucs2) {
|
/external/python/cpython2/Tools/gdb/ |
D | libpython.py | 1129 ucs2 = int(field_str[i]) 1130 if ucs2 < 0xDC00 or ucs2 > 0xDFFF: 1133 code |= ucs2 & 0x03FF
|
/external/python/cffi/doc/source/ |
D | installation.rst | 174 error occurs in Python 2 as soon as you mix "ucs2" and "ucs4" builds of 177 different Python: one that was running "ucs2". (If the opposite problem
|
/external/python/cpython3/Tools/gdb/ |
D | libpython.py | 1235 ucs2 = int(field_str[i]) 1236 if ucs2 < 0xDC00 or ucs2 > 0xDFFF: 1239 code |= ucs2 & 0x03FF
|
/external/icu/libicu/ndk_headers/unicode/ |
D | ustring.h | 580 const UChar *ucs2,
|
/external/icu/icu4c/source/common/unicode/ |
D | ustring.h | 560 const UChar *ucs2,
|
/external/icu/libandroidicu/include/unicode/ |
D | ustring.h | 560 const UChar *ucs2,
|
/external/icu/libicu/cts_headers/unicode/ |
D | ustring.h | 560 const UChar *ucs2,
|
/external/python/cpython3/Include/cpython/ |
D | unicodeobject.h | 241 Py_UCS2 *ucs2; member
|
/external/python/pybind11/docs/advanced/cast/ |
D | strings.rst | 210 3.3 compiled with ``--enable-unicode=ucs2``.
|
/external/icu/libicu/src/ |
D | shim.cpp | 575 int32_t u_strncmp(const UChar * ucs1, const UChar * ucs2, int32_t n) { in u_strncmp() argument 576 return U_ICU_ENTRY_POINT_RENAME(u_strncmp)(ucs1, ucs2, n); in u_strncmp()
|
/external/python/cpython3/Objects/ |
D | unicodeobject.c | 2100 Py_UCS2 *ucs2 = start; in unicode_write_cstr() local 2102 for (; str < end; ++ucs2, ++str) in unicode_write_cstr() 2103 *ucs2 = (Py_UCS2)*str; in unicode_write_cstr() 2105 assert((ucs2 - start) <= PyUnicode_GET_LENGTH(unicode)); in unicode_write_cstr() 12816 Py_UCS2 *ucs2 = PyUnicode_2BYTE_DATA(u); in unicode_repeat() local 12818 ucs2[n] = fill_char; in unicode_repeat()
|
/external/python/cpython2/ |
D | configure.ac | 4168 …_HELP_STRING([--enable-unicode@<:@=ucs@<:@24@:>@@:>@], [Enable Unicode strings (default is ucs2)]), 4178 *) enable_unicode="ucs2" 4186 ucs2) unicode_size="2" 4193 *) AC_MSG_ERROR([invalid value for --enable-unicode. Use either ucs2 or ucs4 (lowercase).]) ;;
|
D | configure | 1485 Enable Unicode strings (default is ucs2) 13580 ucs2) unicode_size="2"
|
/external/python/cpython2/Doc/library/ |
D | codecs.rst | 792 via ``--enable-unicode=ucs2`` or ``--enable-unicode=ucs4``, with the
|
/external/python/cpython2/Misc/ |
D | HISTORY | 7074 ucs2 and ucs4 (new in 2.2a1). With --disable-unicode, the Unicode
|
/external/python/cpython3/Misc/ |
D | HISTORY | 24453 ucs2 and ucs4 (new in 2.2a1). With --disable-unicode, the Unicode
|