HomeSort by relevance Sort by last modified time
    Searched refs:trieUChars (Results 1 - 4 of 4) sorted by null

  /external/icu4c/common/unicode/
ucharstrie.h 53 * The trieUChars must contain a copy of a UChar sequence from the UCharsTrieBuilder,
61 * @param trieUChars The UChar array that contains the serialized trie.
64 UCharsTrie(const UChar *trieUChars)
65 : ownedArray_(NULL), uchars_(trieUChars),
260 * @param trieUChars The trie UChars.
269 Iterator(const UChar *trieUChars, int32_t maxStringLength, UErrorCode &errorCode);
369 UCharsTrie(UChar *adoptUChars, const UChar *trieUChars)
370 : ownedArray_(adoptUChars), uchars_(trieUChars),
  /external/icu4c/test/intltest/
ucharstrietest.cpp 377 UnicodeString trieUChars;
378 builder_->buildUnicodeString(USTRINGTRIE_BUILD_FAST, trieUChars, errorCode);
379 logln("serialized trie size: %ld UChars\n", (long)trieUChars.length());
380 return new UCharsTrie(trieUChars.getBuffer());
742 UnicodeString trieUChars;
743 builder_->buildUnicodeString(USTRINGTRIE_BUILD_FAST, trieUChars, errorCode);
744 UCharsTrie::Iterator iter(trieUChars.getBuffer(), 0, errorCode);
790 UnicodeString trieUChars;
791 builder_->buildUnicodeString(buildOption, trieUChars, errorCode);
799 logln("serialized trie size: %ld UChars\n", (long)trieUChars.length())
    [all...]
  /external/icu4c/common/
ucharstrieiterator.cpp 22 UCharsTrie::Iterator::Iterator(const UChar *trieUChars, int32_t maxStringLength,
24 : uchars_(trieUChars),
  /external/icu4c/test/perf/dicttrieperf/
dicttrieperf.cpp 418 UnicodeString trieUChars;
419 int32_t length=builder->buildUnicodeString(USTRINGTRIE_BUILD_SMALL, trieUChars, errorCode).length();

Completed in 147 milliseconds