/external/chromium_org/base/third_party/icu/ |
icu_utf.h | 287 * Get a supplementary code point value (U+10000..U+10ffff) 294 * @return supplementary code point (U+10000..U+10ffff) 303 * supplementary code point (0x10000..0x10ffff). 304 * @param supplementary 32-bit code point (U+10000..U+10ffff) 305 * @return lead surrogate (U+d800..U+dbff) for supplementary 308 #define CBU16_LEAD(supplementary) \ 309 (base_icu::UChar)(((supplementary)>>10)+0xd7c0) 313 * supplementary code point (0x10000..0x10ffff). 314 * @param supplementary 32-bit code point (U+10000..U+10ffff) 315 * @return trail surrogate (U+dc00..U+dfff) for supplementary [all...] |
/external/chromium_org/third_party/icu/source/common/unicode/ |
utf16.h | 99 * Get a supplementary code point value (U+10000..U+10ffff) 106 * @return supplementary code point (U+10000..U+10ffff) 115 * supplementary code point (0x10000..0x10ffff). 116 * @param supplementary 32-bit code point (U+10000..U+10ffff) 117 * @return lead surrogate (U+d800..U+dbff) for supplementary 120 #define U16_LEAD(supplementary) (UChar)(((supplementary)>>10)+0xd7c0) 124 * supplementary code point (0x10000..0x10ffff). 125 * @param supplementary 32-bit code point (U+10000..U+10ffff) 126 * @return trail surrogate (U+dc00..U+dfff) for supplementary [all...] |
utf_old.h | 517 #define UTF_FIRST_SURROGATE(supplementary) (UChar)(((supplementary)>>10)+0xd7c0) 520 #define UTF_SECOND_SURROGATE(supplementary) (UChar)(((supplementary)&0x3ff)|0xdc00) 523 #define UTF16_LEAD(supplementary) UTF_FIRST_SURROGATE(supplementary) 526 #define UTF16_TRAIL(supplementary) UTF_SECOND_SURROGATE(supplementary) [all...] |
/external/icu/icu4c/source/common/unicode/ |
utf16.h | 99 * Get a supplementary code point value (U+10000..U+10ffff) 106 * @return supplementary code point (U+10000..U+10ffff) 115 * supplementary code point (0x10000..0x10ffff). 116 * @param supplementary 32-bit code point (U+10000..U+10ffff) 117 * @return lead surrogate (U+d800..U+dbff) for supplementary 120 #define U16_LEAD(supplementary) (UChar)(((supplementary)>>10)+0xd7c0) 124 * supplementary code point (0x10000..0x10ffff). 125 * @param supplementary 32-bit code point (U+10000..U+10ffff) 126 * @return trail surrogate (U+dc00..U+dfff) for supplementary [all...] |
utf_old.h | 517 #define UTF_FIRST_SURROGATE(supplementary) (UChar)(((supplementary)>>10)+0xd7c0) 520 #define UTF_SECOND_SURROGATE(supplementary) (UChar)(((supplementary)&0x3ff)|0xdc00) 523 #define UTF16_LEAD(supplementary) UTF_FIRST_SURROGATE(supplementary) 526 #define UTF16_TRAIL(supplementary) UTF_SECOND_SURROGATE(supplementary) [all...] |
/external/icu/icu4c/source/test/cintltst/ |
citertst.c | 781 UChar supplementary[2]; local 854 U16_APPEND(supplementary, stringOffset, 2, unassigned, isError); 856 ucol_setText(iter, supplementary, 2, &status); [all...] |
/external/chromium_org/v8/test/cctest/ |
log-eq-of-logging-and-traversal.js | 28 // This is a supplementary file for test-log/EquivalenceOfLoggingAndTraversal.
|
/external/chromium_org/third_party/icu/source/test/cintltst/ |
citertst.c | 791 UChar supplementary[2]; local 864 U16_APPEND(supplementary, stringOffset, 2, unassigned, isError); 866 ucol_setText(iter, supplementary, 2, &status); [all...] |
/external/chromium_org/third_party/icu/source/common/ |
utext.cpp | 145 // and the preceding character is not supplementary. 196 // Normal, non-supplementary case. 201 // Possible supplementary char. 276 // Normal case, not supplementary. 298 UChar32 supplementary = U16_GET_SUPPLEMENTARY(c, trail); local 300 return supplementary; 316 // Normal case, not supplementary. 337 UChar32 supplementary = U16_GET_SUPPLEMENTARY(lead, c); local 339 return supplementary; 412 // Possible supplementary. Many edge cases [all...] |
/external/icu/icu4c/source/common/ |
utext.cpp | 145 // and the preceding character is not supplementary. 196 // Normal, non-supplementary case. 201 // Possible supplementary char. 276 // Normal case, not supplementary. 298 UChar32 supplementary = U16_GET_SUPPLEMENTARY(c, trail); local 300 return supplementary; 316 // Normal case, not supplementary. 337 UChar32 supplementary = U16_GET_SUPPLEMENTARY(lead, c); local 339 return supplementary; 412 // Possible supplementary. Many edge cases [all...] |