/third_party/skia/third_party/externals/icu/source/common/unicode/ |
D | bytestrie.h | 71 BytesTrie(const void *trieBytes) in BytesTrie() argument 72 : ownedArray_(NULL), bytes_(static_cast<const uint8_t *>(trieBytes)), in BytesTrie() 295 Iterator(const void *trieBytes, int32_t maxStringLength, UErrorCode &errorCode); 391 BytesTrie(void *adoptBytes, const void *trieBytes) in BytesTrie() argument 393 bytes_(static_cast<const uint8_t *>(trieBytes)), in BytesTrie()
|
/third_party/icu/icu4c/source/common/unicode/ |
D | bytestrie.h | 71 BytesTrie(const void *trieBytes) in BytesTrie() argument 72 : ownedArray_(NULL), bytes_(static_cast<const uint8_t *>(trieBytes)), in BytesTrie() 295 Iterator(const void *trieBytes, int32_t maxStringLength, UErrorCode &errorCode); 391 BytesTrie(void *adoptBytes, const void *trieBytes) in BytesTrie() argument 393 bytes_(static_cast<const uint8_t *>(trieBytes)), in BytesTrie()
|
/third_party/node/deps/icu-small/source/common/unicode/ |
D | bytestrie.h | 71 BytesTrie(const void *trieBytes) in BytesTrie() argument 72 : ownedArray_(nullptr), bytes_(static_cast<const uint8_t *>(trieBytes)), in BytesTrie() 295 Iterator(const void *trieBytes, int32_t maxStringLength, UErrorCode &errorCode); 391 BytesTrie(void *adoptBytes, const void *trieBytes) in BytesTrie() argument 393 bytes_(static_cast<const uint8_t *>(trieBytes)), in BytesTrie()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/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()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
D | BytesTrieTest.java | 508 ByteBuffer trieBytes=builder_.buildByteBuffer(StringTrieBuilder.Option.FAST); in Test59IteratorFromBytes() local 510 BytesTrie.iterator(trieBytes.array(), trieBytes.arrayOffset()+trieBytes.position(), 0), in Test59IteratorFromBytes() 620 ByteBuffer trieBytes=builder_.buildByteBuffer(buildOption); in buildTrie() local 621 logln("serialized trie size: "+trieBytes.remaining()+" bytes\n"); in buildTrie() 628 return new BytesTrie(trieBytes.array(), trieBytes.arrayOffset()+trieBytes.position()); in buildTrie()
|
/third_party/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() 500 public static Iterator iterator(byte[] trieBytes, int offset, int maxStringLength) { 501 return new Iterator(trieBytes, offset, -1, maxStringLength); 575 … private Iterator(byte[] trieBytes, int offset, int remainingMatchLength, int maxStringLength) { 576 bytes_=trieBytes;
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
D | BytesTrie.java | 45 public BytesTrie(byte[] trieBytes, int offset) { in BytesTrie() argument 46 bytes_=trieBytes; in BytesTrie() 474 public static Iterator iterator(byte[] trieBytes, int offset, int maxStringLength) { 475 return new Iterator(trieBytes, offset, -1, maxStringLength); 544 … private Iterator(byte[] trieBytes, int offset, int remainingMatchLength, int maxStringLength) { 545 bytes_=trieBytes;
|
/third_party/node/deps/icu-small/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 | 60 const uint8_t *trieBytes = nullptr; member 117 trieBytes = value.getBinary(length, errorCode); in load() 420 trie(data.trieBytes), in XLikelySubtags()
|
/third_party/skia/third_party/externals/icu/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 | 58 const uint8_t *trieBytes = nullptr; member 108 trieBytes = value.getBinary(length, errorCode); in load() 284 trie(data.trieBytes), in XLikelySubtags()
|
/third_party/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 | 58 const uint8_t *trieBytes = nullptr; member 108 trieBytes = value.getBinary(length, errorCode); in load() 284 trie(data.trieBytes), in XLikelySubtags()
|
/third_party/icu/icu4c/source/test/intltest/ |
D | bytestrietest.cpp | 590 StringPiece trieBytes=builder_->buildStringPiece(USTRINGTRIE_BUILD_FAST, errorCode); in TestIteratorFromBytes() local 591 BytesTrie::Iterator iter(trieBytes.data(), 0, errorCode); in TestIteratorFromBytes()
|