Home
last modified time | relevance | path

Searched refs:trieUChars (Results 1 – 4 of 4) sorted by relevance

/external/icu4c/common/unicode/
Ducharstrie.h64 UCharsTrie(const UChar *trieUChars) in UCharsTrie() argument
65 : ownedArray_(NULL), uchars_(trieUChars), in UCharsTrie()
269 Iterator(const UChar *trieUChars, int32_t maxStringLength, UErrorCode &errorCode);
369 UCharsTrie(UChar *adoptUChars, const UChar *trieUChars) in UCharsTrie() argument
370 : ownedArray_(adoptUChars), uchars_(trieUChars), in UCharsTrie()
/external/icu4c/test/intltest/
Ducharstrietest.cpp377 UnicodeString trieUChars; in buildLargeTrie() local
378 builder_->buildUnicodeString(USTRINGTRIE_BUILD_FAST, trieUChars, errorCode); in buildLargeTrie()
379 logln("serialized trie size: %ld UChars\n", (long)trieUChars.length()); in buildLargeTrie()
380 return new UCharsTrie(trieUChars.getBuffer()); in buildLargeTrie()
742 UnicodeString trieUChars; in TestIteratorFromUChars() local
743 builder_->buildUnicodeString(USTRINGTRIE_BUILD_FAST, trieUChars, errorCode); in TestIteratorFromUChars()
744 UCharsTrie::Iterator iter(trieUChars.getBuffer(), 0, errorCode); in TestIteratorFromUChars()
790 UnicodeString trieUChars; in buildTrie() local
791 builder_->buildUnicodeString(buildOption, trieUChars, errorCode); in buildTrie()
799 logln("serialized trie size: %ld UChars\n", (long)trieUChars.length()); in buildTrie()
[all …]
/external/icu4c/common/
Ducharstrieiterator.cpp22 UCharsTrie::Iterator::Iterator(const UChar *trieUChars, int32_t maxStringLength, in Iterator() argument
24 : uchars_(trieUChars), in Iterator()
/external/icu4c/test/perf/dicttrieperf/
Ddicttrieperf.cpp418 UnicodeString trieUChars; in UCharsTrieDictLookup() local
419 …int32_t length=builder->buildUnicodeString(USTRINGTRIE_BUILD_SMALL, trieUChars, errorCode).length(… in UCharsTrieDictLookup()