/external/chromium/base/third_party/icu/ |
icu_utf.h | 286 * Get a supplementary code point value (U+10000..U+10ffff) 293 * @return supplementary code point (U+10000..U+10ffff) 302 * supplementary code point (0x10000..0x10ffff). 303 * @param supplementary 32-bit code point (U+10000..U+10ffff) 304 * @return lead surrogate (U+d800..U+dbff) for supplementary 307 #define CBU16_LEAD(supplementary) (UChar)(((supplementary)>>10)+0xd7c0) 311 * supplementary code point (0x10000..0x10ffff). 312 * @param supplementary 32-bit code point (U+10000..U+10ffff) 313 * @return trail surrogate (U+dc00..U+dfff) for supplementary [all...] |
/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 | 101 * Get a supplementary code point value (U+10000..U+10ffff) 108 * @return supplementary code point (U+10000..U+10ffff) 117 * supplementary code point (0x10000..0x10ffff). 118 * @param supplementary 32-bit code point (U+10000..U+10ffff) 119 * @return lead surrogate (U+d800..U+dbff) for supplementary 122 #define U16_LEAD(supplementary) (UChar)(((supplementary)>>10)+0xd7c0) 126 * supplementary code point (0x10000..0x10ffff). 127 * @param supplementary 32-bit code point (U+10000..U+10ffff) 128 * @return trail surrogate (U+dc00..U+dfff) for supplementary [all...] |
utf_old.h | 521 #define UTF_FIRST_SURROGATE(supplementary) (UChar)(((supplementary)>>10)+0xd7c0) 524 #define UTF_SECOND_SURROGATE(supplementary) (UChar)(((supplementary)&0x3ff)|0xdc00) 527 #define UTF16_LEAD(supplementary) UTF_FIRST_SURROGATE(supplementary) 530 #define UTF16_TRAIL(supplementary) UTF_SECOND_SURROGATE(supplementary) [all...] |
/external/icu4c/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/chromium_org/v8/test/cctest/ |
log-eq-of-logging-and-traversal.js | 28 // This is a supplementary file for test-log/EquivalenceOfLoggingAndTraversal.
|
/external/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); 865 ucol_setText(iter, supplementary, 2, &status); [all...] |
/external/icu4c/test/cintltst/ |
citertst.c | 791 UChar supplementary[2]; local 864 U16_APPEND(supplementary, stringOffset, 2, unassigned, isError); 865 ucol_setText(iter, supplementary, 2, &status); [all...] |
/external/chromium_org/third_party/icu/source/common/ |
utext.cpp | 142 // and the preceding character is not supplementary. 193 // Normal, non-supplementary case. 198 // Possible supplementary char. 273 // Normal case, not supplementary. 295 UChar32 supplementary = U16_GET_SUPPLEMENTARY(c, trail); local 297 return supplementary; 313 // Normal case, not supplementary. 334 UChar32 supplementary = U16_GET_SUPPLEMENTARY(lead, c); local 336 return supplementary; 409 // Possible supplementary. Many edge cases [all...] |
/external/icu4c/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...] |
/prebuilts/misc/common/icu4j/ |
icu4j.jar | |