Searched refs:trieBytes (Results 1 – 8 of 8) sorted by relevance
/external/icu/icu4c/source/common/unicode/ |
D | bytestrie.h | 69 BytesTrie(const void *trieBytes) in BytesTrie() argument 70 : ownedArray_(NULL), bytes_(static_cast<const uint8_t *>(trieBytes)), in BytesTrie() 295 Iterator(const void *trieBytes, int32_t maxStringLength, UErrorCode &errorCode); 390 BytesTrie(void *adoptBytes, const void *trieBytes) in BytesTrie() argument 392 bytes_(static_cast<const uint8_t *>(trieBytes)), in BytesTrie()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
D | BytesTrieTest.java | 510 ByteBuffer trieBytes=builder_.buildByteBuffer(StringTrieBuilder.Option.FAST); in Test59IteratorFromBytes() local 512 BytesTrie.iterator(trieBytes.array(), trieBytes.arrayOffset()+trieBytes.position(), 0), in Test59IteratorFromBytes() 586 ByteBuffer trieBytes=builder_.buildByteBuffer(buildOption); in buildTrie() local 587 logln("serialized trie size: "+trieBytes.remaining()+" bytes\n"); in buildTrie() 594 return new BytesTrie(trieBytes.array(), trieBytes.arrayOffset()+trieBytes.position()); in buildTrie()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
D | BytesTrieTest.java | 507 ByteBuffer trieBytes=builder_.buildByteBuffer(StringTrieBuilder.Option.FAST); in Test59IteratorFromBytes() local 509 BytesTrie.iterator(trieBytes.array(), trieBytes.arrayOffset()+trieBytes.position(), 0), in Test59IteratorFromBytes() 583 ByteBuffer trieBytes=builder_.buildByteBuffer(buildOption); in buildTrie() local 584 logln("serialized trie size: "+trieBytes.remaining()+" bytes\n"); in buildTrie() 591 return new BytesTrie(trieBytes.array(), trieBytes.arrayOffset()+trieBytes.position()); in buildTrie()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | BytesTrie.java | 45 public BytesTrie(byte[] trieBytes, int offset) { in BytesTrie() argument 46 bytes_=trieBytes; in BytesTrie() 503 public static Iterator iterator(byte[] trieBytes, int offset, int maxStringLength) { 504 return new Iterator(trieBytes, offset, -1, maxStringLength); 578 … private Iterator(byte[] trieBytes, int offset, int remainingMatchLength, int maxStringLength) { 579 bytes_=trieBytes;
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
D | BytesTrie.java | 45 public BytesTrie(byte[] trieBytes, int offset) { in BytesTrie() argument 46 bytes_=trieBytes; in BytesTrie() 478 public static Iterator iterator(byte[] trieBytes, int offset, int maxStringLength) { 479 return new Iterator(trieBytes, offset, -1, maxStringLength); 548 … private Iterator(byte[] trieBytes, int offset, int remainingMatchLength, int maxStringLength) { 549 bytes_=trieBytes;
|
/external/icu/icu4c/source/common/ |
D | bytestrieiterator.cpp | 25 BytesTrie::Iterator::Iterator(const void *trieBytes, int32_t maxStringLength, in Iterator() argument 27 : bytes_(static_cast<const uint8_t *>(trieBytes)), in Iterator()
|
D | loclikelysubtags.cpp | 122 const uint8_t *trieBytes = nullptr; member 172 trieBytes = value.getBinary(length, errorCode); in load() 346 trie(data.trieBytes), in XLikelySubtags()
|
/external/icu/icu4c/source/test/intltest/ |
D | bytestrietest.cpp | 588 StringPiece trieBytes=builder_->buildStringPiece(USTRINGTRIE_BUILD_FAST, errorCode); in TestIteratorFromBytes() local 589 BytesTrie::Iterator iter(trieBytes.data(), 0, errorCode); in TestIteratorFromBytes()
|