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

  /external/icu/icu4c/source/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/icu/icu4c/source/test/intltest/
ucharstrietest.cpp 376 UnicodeString trieUChars;
377 builder_->buildUnicodeString(USTRINGTRIE_BUILD_FAST, trieUChars, errorCode);
378 logln("serialized trie size: %ld UChars\n", (long)trieUChars.length());
379 return new UCharsTrie(trieUChars.getBuffer());
741 UnicodeString trieUChars;
742 builder_->buildUnicodeString(USTRINGTRIE_BUILD_FAST, trieUChars, errorCode);
743 UCharsTrie::Iterator iter(trieUChars.getBuffer(), 0, errorCode);
789 UnicodeString trieUChars;
790 builder_->buildUnicodeString(buildOption, trieUChars, errorCode);
798 logln("serialized trie size: %ld UChars\n", (long)trieUChars.length())
    [all...]
  /external/icu/icu4c/source/common/
ucharstrieiterator.cpp 22 UCharsTrie::Iterator::Iterator(const UChar *trieUChars, int32_t maxStringLength,
24 : uchars_(trieUChars),
  /external/icu/icu4c/source/test/perf/dicttrieperf/
dicttrieperf.cpp 417 UnicodeString trieUChars;
418 int32_t length=builder->buildUnicodeString(USTRINGTRIE_BUILD_SMALL, trieUChars, errorCode).length();

Completed in 224 milliseconds