Home
last modified time | relevance | path

Searched refs:trieBytes (Results 1 – 7 of 7) sorted by relevance

/external/icu/icu4c/source/common/unicode/
Dbytestrie.h66 BytesTrie(const void *trieBytes) in BytesTrie() argument
67 : ownedArray_(NULL), bytes_(static_cast<const uint8_t *>(trieBytes)), in BytesTrie()
257 Iterator(const void *trieBytes, int32_t maxStringLength, UErrorCode &errorCode);
352 BytesTrie(void *adoptBytes, const void *trieBytes) in BytesTrie() argument
354 bytes_(static_cast<const uint8_t *>(trieBytes)), in BytesTrie()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DBytesTrieTest.java507 ByteBuffer trieBytes=builder_.buildByteBuffer(StringTrieBuilder.Option.FAST); in Test59IteratorFromBytes() local
509 BytesTrie.iterator(trieBytes.array(), trieBytes.arrayOffset()+trieBytes.position(), 0), in Test59IteratorFromBytes()
561 ByteBuffer trieBytes=builder_.buildByteBuffer(buildOption); in buildTrie() local
562 logln("serialized trie size: "+trieBytes.remaining()+" bytes\n"); in buildTrie()
569 return new BytesTrie(trieBytes.array(), trieBytes.arrayOffset()+trieBytes.position()); in buildTrie()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DBytesTrieTest.java510 ByteBuffer trieBytes=builder_.buildByteBuffer(StringTrieBuilder.Option.FAST); in Test59IteratorFromBytes() local
512 BytesTrie.iterator(trieBytes.array(), trieBytes.arrayOffset()+trieBytes.position(), 0), in Test59IteratorFromBytes()
564 ByteBuffer trieBytes=builder_.buildByteBuffer(buildOption); in buildTrie() local
565 logln("serialized trie size: "+trieBytes.remaining()+" bytes\n"); in buildTrie()
572 return new BytesTrie(trieBytes.array(), trieBytes.arrayOffset()+trieBytes.position()); in buildTrie()
/external/icu/android_icu4j/src/main/java/android/icu/util/
DBytesTrie.java45 public BytesTrie(byte[] trieBytes, int offset) { in BytesTrie() argument
46 bytes_=trieBytes; in BytesTrie()
429 public static Iterator iterator(byte[] trieBytes, int offset, int maxStringLength) {
430 return new Iterator(trieBytes, offset, -1, maxStringLength);
499 … private Iterator(byte[] trieBytes, int offset, int remainingMatchLength, int maxStringLength) {
500 bytes_=trieBytes;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DBytesTrie.java45 public BytesTrie(byte[] trieBytes, int offset) { in BytesTrie() argument
46 bytes_=trieBytes; in BytesTrie()
451 public static Iterator iterator(byte[] trieBytes, int offset, int maxStringLength) {
452 return new Iterator(trieBytes, offset, -1, maxStringLength);
526 … private Iterator(byte[] trieBytes, int offset, int remainingMatchLength, int maxStringLength) {
527 bytes_=trieBytes;
/external/icu/icu4c/source/common/
Dbytestrieiterator.cpp25 BytesTrie::Iterator::Iterator(const void *trieBytes, int32_t maxStringLength, in Iterator() argument
27 : bytes_(static_cast<const uint8_t *>(trieBytes)), in Iterator()
/external/icu/icu4c/source/test/intltest/
Dbytestrietest.cpp587 StringPiece trieBytes=builder_->buildStringPiece(USTRINGTRIE_BUILD_FAST, errorCode); in TestIteratorFromBytes() local
588 BytesTrie::Iterator iter(trieBytes.data(), 0, errorCode); in TestIteratorFromBytes()