Lines Matching refs:trieUChars
378 UnicodeString trieUChars; in buildLargeTrie() local
379 builder_->buildUnicodeString(USTRINGTRIE_BUILD_FAST, trieUChars, errorCode); in buildLargeTrie()
380 logln("serialized trie size: %ld UChars\n", (long)trieUChars.length()); in buildLargeTrie()
381 return new UCharsTrie(trieUChars.getBuffer()); in buildLargeTrie()
743 UnicodeString trieUChars; in TestIteratorFromUChars() local
744 builder_->buildUnicodeString(USTRINGTRIE_BUILD_FAST, trieUChars, errorCode); in TestIteratorFromUChars()
745 UCharsTrie::Iterator iter(trieUChars.getBuffer(), 0, errorCode); in TestIteratorFromUChars()
791 UnicodeString trieUChars; in buildTrie() local
792 builder_->buildUnicodeString(buildOption, trieUChars, errorCode); in buildTrie()
800 logln("serialized trie size: %ld UChars\n", (long)trieUChars.length()); in buildTrie()
803 if(trieUChars.getBuffer()==trieUChars2.getBuffer()) { in buildTrie()