Lines Matching refs:trieUChars
376 UnicodeString trieUChars; in buildLargeTrie() local
377 builder_->buildUnicodeString(USTRINGTRIE_BUILD_FAST, trieUChars, errorCode); in buildLargeTrie()
378 logln("serialized trie size: %ld UChars\n", (long)trieUChars.length()); in buildLargeTrie()
379 return new UCharsTrie(trieUChars.getBuffer()); in buildLargeTrie()
741 UnicodeString trieUChars; in TestIteratorFromUChars() local
742 builder_->buildUnicodeString(USTRINGTRIE_BUILD_FAST, trieUChars, errorCode); in TestIteratorFromUChars()
743 UCharsTrie::Iterator iter(trieUChars.getBuffer(), 0, errorCode); in TestIteratorFromUChars()
789 UnicodeString trieUChars; in buildTrie() local
790 builder_->buildUnicodeString(buildOption, trieUChars, errorCode); in buildTrie()
798 logln("serialized trie size: %ld UChars\n", (long)trieUChars.length()); in buildTrie()
801 if(trieUChars.getBuffer()==trieUChars2.getBuffer()) { in buildTrie()