Searched refs:surrogates (Results 1 – 25 of 31) sorted by relevance
12
/external/python/cpython2/Lib/json/tests/ |
D | test_scanstring.py | 103 surrogates = unichr(0xd834) + unichr(0xdd20) 108 assertScan(u'"z\\ud834\udd20x12345"', u'z%sx12345' % surrogates) 111 assertScan(u'"z\ud834\\udd20x"', u'z%sx' % surrogates)
|
/external/icu/icu4c/source/test/testdata/ |
D | testnorm.txt | 48 # D802:2 # surrogates with non-zero combining classes 63 # D800>D7FF # surrogates with mappings, and mappings to empty strings
|
D | collationtest.txt | 378 ** test: Hani < surrogates < U+FFFD 379 # Note: compareUTF8() treats unpaired surrogates like U+FFFD, 380 # so with that the strings with surrogates will compare equal to each other 1664 # It turned out that surrogates were not skipped properly
|
D | conversion.txt | 763 // surrogates in CESU-8 1785 // Verify that incomplete surrogates are handled as an error
|
D | rbbitst.txt | 733 # ticket #4853: unpaired surrogates should behave like AL
|
/external/icu/icu4c/source/samples/uciter8/ |
D | readme.txt | 9 and also accepting single surrogates. 11 The macros are incomplete (do not assemble code points from pairs of surrogates)
|
/external/icu/icu4c/source/test/cintltst/ |
D | bocu1tst.c | 943 static const UChar surrogates[]={ 0xdc00, 0xd800 }; /* single surrogates, unmatched! */ variable 963 { surrogates, UPRV_LENGTHOF(surrogates) },
|
/external/icu/icu4c/source/test/intltest/ |
D | usettest.cpp | 3904 UnicodeSet surrogates; in TestUCAUnsafeBackwards() 3905 surrogates.add(0xd83a); // a lead surrogate in TestUCAUnsafeBackwards() 3906 surrogates.add(0xdc00, 0xdfff); // a range of trail surrogates in TestUCAUnsafeBackwards() 3908 surrogates.toPattern(pat, FALSE); // bad: [ 0xd83a, 0xdc00, 0x2d, 0xdfff ] in TestUCAUnsafeBackwards() 3918 checkEqual(surrogates, s2, "surrogates to/from pattern"); in TestUCAUnsafeBackwards()
|
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/data/ |
D | collationtest.txt | 380 ** test: Hani < surrogates < U+FFFD 381 # Note: compareUTF8() treats unpaired surrogates like U+FFFD, 382 # so with that the strings with surrogates will compare equal to each other 1666 # It turned out that surrogates were not skipped properly
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/data/ |
D | collationtest.txt | 380 ** test: Hani < surrogates < U+FFFD 381 # Note: compareUTF8() treats unpaired surrogates like U+FFFD, 382 # so with that the strings with surrogates will compare equal to each other 1666 # It turned out that surrogates were not skipped properly
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.6a2.rst | 85 unicode literals and the 'raw-unicode-escape' codec. Now UTF-16 surrogates
|
D | 2.7.7rc1.rst | 817 JSON decoder now accepts lone surrogates.
|
D | 2.7.3rc1.rst | 69 The UTF-7 decoder now accepts lone surrogates (the encoder already accepts
|
/external/antlr/runtime/Cpp/include/ |
D | antlr3intstream.inl | 876 // Increment to next character position, accounting for any surrogates 949 // Increment to next character position, accounting for any surrogates 1019 // Increment to next character position, accounting for any surrogates
|
/external/python/cpython2/Doc/library/ |
D | json.rst | 538 surrogates), but it does note that they may cause interoperability problems.
|
D | xml.dom.rst | 1038 This means that the typical surrogates generated by Python IDL compilers are not
|
/external/python/cpython3/Doc/library/ |
D | json.rst | 573 surrogates), but it does note that they may cause interoperability problems.
|
D | xml.dom.rst | 1016 This means that the typical surrogates generated by Python IDL compilers are not
|
D | codecs.rst | 361 | | utf-32-be, utf-32-le | presence of surrogates as an error. |
|
/external/python/cpython3/Doc/c-api/ |
D | unicode.rst | 362 These APIs can be used to work with surrogates: 379 *high* and *low* are respectively the leading and trailing surrogates in a
|
/external/python/cpython3/Misc/ |
D | HISTORY | 2470 - Issue #20424: Python implementation of io.StringIO now supports lone surrogates. 3112 - Issue #11489: JSON decoder now accepts lone surrogates. 8348 - Issue #13333: The UTF-7 decoder now accepts lone surrogates (the encoder 10547 - Issue #10542: Add 4 macros to work with surrogates: Py_UNICODE_IS_SURROGATE, 12770 of strict) error handler to escape surrogates. 12785 PyUnicode_FromString() to support surrogates in the filename and use the right 12958 surrogates. 13037 'surrogateescape' error handler, a string which contains unpaired surrogates. 13409 surrogates and bytes for the filename. 13507 - Issue #8391: os.execvpe() and os.getenv() supports unicode with surrogates and [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/ |
D | rbbitst.txt | 733 # ticket #4853: unpaired surrogates should behave like AL
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
D | rbbitst.txt | 733 # ticket #4853: unpaired surrogates should behave like AL
|
/external/pcre/dist2/doc/ |
D | pcre2.txt | 1803 0x10ffff. The surrogates cannot therefore be represented in UTF-16. 1811 explicitly test for the surrogates using escape sequences. The 4585 cept of surrogates." 6727 equal to U+00A0, except for the surrogates U+D800 to U+DFFF. Note that 7072 ever, ranges such as [\x{d7ff}-\x{e000}], which include the surrogates,
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.4.rst | 419 * All the UTF-\* codecs (except UTF-7) now reject surrogates during both
|
12