Lines Matching refs:trieUChars
380 UnicodeString trieUChars; in buildLargeTrie() local
381 builder_->buildUnicodeString(USTRINGTRIE_BUILD_FAST, trieUChars, errorCode); in buildLargeTrie()
382 logln("serialized trie size: %ld UChars\n", (long)trieUChars.length()); in buildLargeTrie()
383 return new UCharsTrie(trieUChars.getBuffer()); in buildLargeTrie()
745 UnicodeString trieUChars; in TestIteratorFromUChars() local
746 builder_->buildUnicodeString(USTRINGTRIE_BUILD_FAST, trieUChars, errorCode); in TestIteratorFromUChars()
747 UCharsTrie::Iterator iter(trieUChars.getBuffer(), 0, errorCode); in TestIteratorFromUChars()
794 UnicodeString trieUChars; in buildTrie() local
795 builder_->buildUnicodeString(buildOption, trieUChars, errorCode); in buildTrie()
803 logln("serialized trie size: %ld UChars\n", (long)trieUChars.length()); in buildTrie()
806 if(trieUChars.getBuffer()==trieUChars2.getBuffer()) { in buildTrie()