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