HomeSort by relevance Sort by last modified time
    Searched full:supplementary (Results 126 - 150 of 352) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/icu/icu4c/source/common/unicode/
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/android_icu4j/src/main/java/android/icu/impl/
Trie2.java 259 * is non-trivial (non-initialValue) data for any of the supplementary
266 * follows. If so, assemble the supplementary code point and look up its value
765 * The index-1 table, only used for supplementary code points, at offset 2112=0x840.
768 * (For 0x100000 supplementary code points U+10000..U+10ffff.)
770 * The part of the index-2 table for supplementary code points starts
804 * and the supplementary index-1 table.
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Trie2.java 257 * is non-trivial (non-initialValue) data for any of the supplementary
264 * follows. If so, assemble the supplementary code point and look up its value
763 * The index-1 table, only used for supplementary code points, at offset 2112=0x840.
766 * (For 0x100000 supplementary code points U+10000..U+10ffff.)
768 * The part of the index-2 table for supplementary code points starts
802 * and the supplementary index-1 table.
    [all...]
  /external/guava/guava/src/com/google/common/escape/
UnicodeEscaper.java 100 * supplementary range are either all escaped or all unescaped, this method
104 * supplementary range, you should either continue to validate the correctness
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/iterator/
TestUCharacterIterator.java 110 "supplementary characters");
130 "previousCodePoint for supplementary characters");
  /external/icu/icu4c/source/i18n/
utf8collationiterator.cpp 71 // Function call for supplementary code points and error cases.
190 // Function call for supplementary code points and error cases.
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/iterator/
TestUCharacterIterator.java 106 "supplementary characters");
126 "previousCodePoint for supplementary characters");
  /external/kernel-headers/original/uapi/linux/
serial_reg.h 339 #define UART_OMAP_SCR 0x10 /* Supplementary control register */
340 #define UART_OMAP_SSR 0x11 /* Supplementary status register */
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
encodingstest.cpp 234 0xF0000, 0xFFFFF, // Supplementary Private Use Area-A
235 0x100000, 0x10FFFF, // Supplementary Private Use Area-B
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
UnicodeEscaper.java 92 * supplementary range are either all escaped or all unescaped, this method
96 * supplementary range, you should either continue to validate the correctness
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
serial_reg.h 319 #define UART_OMAP_SCR 0x10 /* Supplementary control register */
320 #define UART_OMAP_SSR 0x11 /* Supplementary status register */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
serial_reg.h 345 #define UART_OMAP_SCR 0x10 /* Supplementary control register */
346 #define UART_OMAP_SSR 0x11 /* Supplementary status register */
  /art/runtime/native/
libcore_util_CharsetUtils.cc 219 // A supplementary character.
  /external/icu/icu4c/source/common/
normalizer2impl.h 285 * the supplementary code points associated with the lead surrogate have non-zero FCD data.
728 * properties of the 1024 supplementary characters whose UTF-16 form starts with
729 * the lead surrogate. If all of the 1024 supplementary characters are normalization-inert,
732 * the properties for the full supplementary code point need to be looked up.
ucnv_bld.h 84 uint8_t unicodeMask; /* +79: 1 bit 0: has supplementary bit 1: has single surrogates */
unorm.cpp 22 * supplementary code points, etc.
punycode.cpp 529 * Handle indexes when supplementary code points are present.
535 * Only the rare cases with supplementary code points are handled
565 /* supplementary character, insert two code units */
ustrcase.cpp 713 * we got a supplementary code point when hitting its trail surrogate,
759 * we got a supplementary code point when hitting its trail surrogate,
813 /* subtract 0x2800 from BMP code points to make them smaller than supplementary ones */
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/test/cintltst/
sprpdata.c 237 // supplementary code point
  /external/v8/test/cctest/
log-eq-of-logging-and-traversal.js 28 // This is a supplementary file for test-log/EquivalenceOfLoggingAndTraversal.
  /prebuilts/go/darwin-x86/src/syscall/
exec_unix.go 117 Groups []uint32 // Supplementary group IDs.
  /prebuilts/go/linux-x86/src/syscall/
exec_unix.go 117 Groups []uint32 // Supplementary group IDs.
  /system/core/init/
service.h 45 #define NR_SVC_SUPP_GIDS 12 // twelve supplementary groups
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
Collation.java 255 * 9.. 8: =0: All associated supplementary code points are unassigned-implict.
256 * =1: All associated supplementary code points fall back to the base data.
257 * else: (Normally 2) Look up the data for the supplementary code point.

Completed in 1309 milliseconds

1 2 3 4 56 7 8 91011>>