OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:trieBytes
(Results
1 - 3
of
3
) sorted by null
/external/icu4c/common/unicode/
bytestrie.h
53
* The
trieBytes
must contain a copy of a byte sequence from the BytesTrieBuilder,
61
* @param
trieBytes
The byte array that contains the serialized trie.
64
BytesTrie(const void *
trieBytes
)
65
: ownedArray_(NULL), bytes_(reinterpret_cast<const uint8_t *>(
trieBytes
)),
246
* @param
trieBytes
The trie bytes.
255
Iterator(const void *
trieBytes
, int32_t maxStringLength, UErrorCode &errorCode);
351
BytesTrie(void *adoptBytes, const void *
trieBytes
)
353
bytes_(reinterpret_cast<const uint8_t *>(
trieBytes
)),
/external/icu4c/common/
bytestrieiterator.cpp
23
BytesTrie::Iterator::Iterator(const void *
trieBytes
, int32_t maxStringLength,
25
: bytes_(reinterpret_cast<const uint8_t *>(
trieBytes
)),
/external/icu4c/test/intltest/
bytestrietest.cpp
584
StringPiece
trieBytes
=builder_->buildStringPiece(USTRINGTRIE_BUILD_FAST, errorCode);
585
BytesTrie::Iterator iter(
trieBytes
.data(), 0, errorCode);
Completed in 1330 milliseconds