Home
last modified time | relevance | path

Searched refs:trieUChars (Results 1 – 11 of 11) sorted by relevance

/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DEmojiProps.java165 String trieUChars = stringTries[prop - UProperty.BASIC_EMOJI]; in hasBinaryProperty() local
166 if (trieUChars != null) { in hasBinaryProperty()
167 CharsTrie trie = new CharsTrie(trieUChars, 0); in hasBinaryProperty()
188 String trieUChars = stringTries[prop - UProperty.BASIC_EMOJI]; in addStrings() local
189 if (trieUChars != null) { in addStrings()
190 CharsTrie trie = new CharsTrie(trieUChars, 0); in addStrings()
/third_party/node/deps/icu-small/source/common/
Demojiprops.cpp184 const char16_t *trieUChars = stringTries[prop - UCHAR_BASIC_EMOJI]; in hasBinaryPropertyImpl() local
185 if (trieUChars != nullptr) { in hasBinaryPropertyImpl()
186 UCharsTrie trie(trieUChars); in hasBinaryPropertyImpl()
209 const char16_t *trieUChars = stringTries[prop - UCHAR_BASIC_EMOJI]; in addStrings() local
210 if (trieUChars != nullptr) { in addStrings()
211 UCharsTrie::Iterator iter(trieUChars, 0, errorCode); in addStrings()
Ducharstrieiterator.cpp24 UCharsTrie::Iterator::Iterator(ConstChar16Ptr trieUChars, int32_t maxStringLength, in Iterator() argument
26 : uchars_(trieUChars), in Iterator()
/third_party/icu/icu4c/source/common/
Demojiprops.cpp184 const UChar *trieUChars = stringTries[prop - UCHAR_BASIC_EMOJI]; in hasBinaryPropertyImpl() local
185 if (trieUChars != nullptr) { in hasBinaryPropertyImpl()
186 UCharsTrie trie(trieUChars); in hasBinaryPropertyImpl()
209 const UChar *trieUChars = stringTries[prop - UCHAR_BASIC_EMOJI]; in addStrings() local
210 if (trieUChars != nullptr) { in addStrings()
211 UCharsTrie::Iterator iter(trieUChars, 0, errorCode); in addStrings()
Ducharstrieiterator.cpp24 UCharsTrie::Iterator::Iterator(ConstChar16Ptr trieUChars, int32_t maxStringLength, in Iterator() argument
26 : uchars_(trieUChars), in Iterator()
/third_party/node/deps/icu-small/source/common/unicode/
Ducharstrie.h69 UCharsTrie(ConstChar16Ptr trieUChars) in UCharsTrie() argument
70 : ownedArray_(nullptr), uchars_(trieUChars), in UCharsTrie()
307 Iterator(ConstChar16Ptr trieUChars, int32_t maxStringLength, UErrorCode &errorCode);
407 UCharsTrie(char16_t *adoptUChars, const char16_t *trieUChars) in UCharsTrie() argument
408 : ownedArray_(adoptUChars), uchars_(trieUChars), in UCharsTrie()
/third_party/skia/third_party/externals/icu/source/common/unicode/
Ducharstrie.h69 UCharsTrie(ConstChar16Ptr trieUChars) in UCharsTrie() argument
70 : ownedArray_(NULL), uchars_(trieUChars), in UCharsTrie()
307 Iterator(ConstChar16Ptr trieUChars, int32_t maxStringLength, UErrorCode &errorCode);
407 UCharsTrie(char16_t *adoptUChars, const char16_t *trieUChars) in UCharsTrie() argument
408 : ownedArray_(adoptUChars), uchars_(trieUChars), in UCharsTrie()
/third_party/icu/icu4c/source/common/unicode/
Ducharstrie.h69 UCharsTrie(ConstChar16Ptr trieUChars) in UCharsTrie() argument
70 : ownedArray_(NULL), uchars_(trieUChars), in UCharsTrie()
307 Iterator(ConstChar16Ptr trieUChars, int32_t maxStringLength, UErrorCode &errorCode);
407 UCharsTrie(char16_t *adoptUChars, const char16_t *trieUChars) in UCharsTrie() argument
408 : ownedArray_(adoptUChars), uchars_(trieUChars), in UCharsTrie()
/third_party/icu/icu4c/source/test/intltest/
Ducharstrietest.cpp380 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()
[all …]
/third_party/skia/third_party/externals/icu/source/common/
Ducharstrieiterator.cpp24 UCharsTrie::Iterator::Iterator(ConstChar16Ptr trieUChars, int32_t maxStringLength, in Iterator() argument
26 : uchars_(trieUChars), in Iterator()
/third_party/icu/icu4c/source/test/perf/dicttrieperf/
Ddicttrieperf.cpp421 UnicodeString trieUChars; in UCharsTrieDictLookup() local
422 …int32_t length=builder->buildUnicodeString(USTRINGTRIE_BUILD_SMALL, trieUChars, errorCode).length(… in UCharsTrieDictLookup()