Searched defs:trieBytes (Results 1 - 5 of 5) sorted by relevance

/external/icu/icu4c/source/common/
H A Dbytestrieiterator.cpp25 BytesTrie::Iterator::Iterator(const void *trieBytes, int32_t maxStringLength, argument
27 : bytes_(static_cast<const uint8_t *>(trieBytes)),
/external/icu/icu4c/source/common/unicode/
H A Dbytestrie.h55 * The trieBytes must contain a copy of a byte sequence from the BytesTrieBuilder,
63 * @param trieBytes The byte array that contains the serialized trie.
66 BytesTrie(const void *trieBytes) argument
67 : ownedArray_(NULL), bytes_(static_cast<const uint8_t *>(trieBytes)),
248 * @param trieBytes The trie bytes.
257 Iterator(const void *trieBytes, int32_t maxStringLength, UErrorCode &errorCode);
352 BytesTrie(void *adoptBytes, const void *trieBytes) argument
354 bytes_(static_cast<const uint8_t *>(trieBytes)),
/external/icu/icu4c/source/test/intltest/
H A Dbytestrietest.cpp587 StringPiece trieBytes=builder_->buildStringPiece(USTRINGTRIE_BUILD_FAST, errorCode); local
588 BytesTrie::Iterator iter(trieBytes.data(), 0, errorCode);
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DBytesTrie.java42 * @param trieBytes Bytes array that contains the serialized trie.
45 public BytesTrie(byte[] trieBytes, int offset) { argument
46 bytes_=trieBytes;
421 * @param trieBytes Bytes array that contains the serialized trie.
427 public static Iterator iterator(byte[] trieBytes, int offset, int maxStringLength) { argument
428 return new Iterator(trieBytes, offset, -1, maxStringLength);
495 private Iterator(byte[] trieBytes, int offset, int remainingMatchLength, int maxStringLength) { argument
496 bytes_=trieBytes;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DBytesTrie.java41 * @param trieBytes Bytes array that contains the serialized trie.
45 public BytesTrie(byte[] trieBytes, int offset) { argument
46 bytes_=trieBytes;
444 * @param trieBytes Bytes array that contains the serialized trie.
451 public static Iterator iterator(byte[] trieBytes, int offset, int maxStringLength) { argument
452 return new Iterator(trieBytes, offset, -1, maxStringLength);
526 private Iterator(byte[] trieBytes, int offset, int remainingMatchLength, int maxStringLength) { argument
527 bytes_=trieBytes;

Completed in 188 milliseconds