Home
last modified time | relevance | path

Searched refs:UMutableCPTrie (Results 1 – 15 of 15) sorted by relevance

/external/icu/libandroidicu/include/unicode/
Dumutablecptrie.h50 typedef struct UMutableCPTrie UMutableCPTrie; typedef
65 U_CAPI UMutableCPTrie * U_EXPORT2
77 U_CAPI UMutableCPTrie * U_EXPORT2
78 umutablecptrie_clone(const UMutableCPTrie *other, UErrorCode *pErrorCode);
87 umutablecptrie_close(UMutableCPTrie *trie);
98 U_CAPI UMutableCPTrie * U_EXPORT2
110 U_CAPI UMutableCPTrie * U_EXPORT2
122 umutablecptrie_get(const UMutableCPTrie *trie, UChar32 c);
154 umutablecptrie_getRange(const UMutableCPTrie *trie, UChar32 start,
168 umutablecptrie_set(UMutableCPTrie *trie, UChar32 c, uint32_t value, UErrorCode *pErrorCode);
[all …]
/external/icu/libicu/cts_headers/unicode/
Dumutablecptrie.h50 typedef struct UMutableCPTrie UMutableCPTrie; typedef
65 U_CAPI UMutableCPTrie * U_EXPORT2
77 U_CAPI UMutableCPTrie * U_EXPORT2
78 umutablecptrie_clone(const UMutableCPTrie *other, UErrorCode *pErrorCode);
87 umutablecptrie_close(UMutableCPTrie *trie);
98 U_CAPI UMutableCPTrie * U_EXPORT2
110 U_CAPI UMutableCPTrie * U_EXPORT2
122 umutablecptrie_get(const UMutableCPTrie *trie, UChar32 c);
154 umutablecptrie_getRange(const UMutableCPTrie *trie, UChar32 start,
168 umutablecptrie_set(UMutableCPTrie *trie, UChar32 c, uint32_t value, UErrorCode *pErrorCode);
[all …]
/external/icu/icu4c/source/common/unicode/
Dumutablecptrie.h50 typedef struct UMutableCPTrie UMutableCPTrie; typedef
65 U_CAPI UMutableCPTrie * U_EXPORT2
77 U_CAPI UMutableCPTrie * U_EXPORT2
78 umutablecptrie_clone(const UMutableCPTrie *other, UErrorCode *pErrorCode);
87 umutablecptrie_close(UMutableCPTrie *trie);
98 U_CAPI UMutableCPTrie * U_EXPORT2
110 U_CAPI UMutableCPTrie * U_EXPORT2
122 umutablecptrie_get(const UMutableCPTrie *trie, UChar32 c);
154 umutablecptrie_getRange(const UMutableCPTrie *trie, UChar32 start,
168 umutablecptrie_set(UMutableCPTrie *trie, UChar32 c, uint32_t value, UErrorCode *pErrorCode);
[all …]
/external/icu/icu4c/source/test/cintltst/
Ducptrietest.c110 testTrieGetRanges(const char *testName, const UCPTrie *trie, const UMutableCPTrie *mutableTrie, in testTrieGetRanges()
343 testBuilderGetters(const char *testName, const UMutableCPTrie *mutableTrie, in testBuilderGetters()
702 testBuilder(const char *testName, const UMutableCPTrie *mutableTrie, in testBuilder()
712 testTrieSerialize(const char *testName, UMutableCPTrie *mutableTrie, in testTrieSerialize()
860 UMutableCPTrie *mutable2 = umutablecptrie_fromUCPTrie(trie, &errorCode); in testTrieSerialize()
884 static UMutableCPTrie *
886 UMutableCPTrie *mutableTrie, UBool withClone, in testTrieSerializeAllValueWidth()
930 static UMutableCPTrie *
934 UMutableCPTrie *mutableTrie; in makeTrieWithRanges()
954 UMutableCPTrie *clone = umutablecptrie_clone(mutableTrie, &errorCode); in makeTrieWithRanges()
[all …]
/external/icu/icu4c/source/tools/gennorm2/
Dn2builder.h98 void writeNorm16(UMutableCPTrie *norm16Trie, UChar32 start, UChar32 end, Norm &norm);
99 void setHangulData(UMutableCPTrie *norm16Trie);
Dn2builder.cpp411 Norm16Writer(UMutableCPTrie *trie, Norms &n, Normalizer2DataBuilder &b) : in Norm16Writer()
417 UMutableCPTrie *norm16Trie;
425 void Normalizer2DataBuilder::writeNorm16(UMutableCPTrie *norm16Trie, UChar32 start, UChar32 end, No… in writeNorm16()
508 void Normalizer2DataBuilder::setHangulData(UMutableCPTrie *norm16Trie) { in setHangulData()
626 UMutableCPTrie *norm16Trie = umutablecptrie_open( in processData()
Dnorms.h191 UMutableCPTrie *normTrie;
/external/icu/icu4c/source/common/
Dumutablecptrie.cpp1739 U_CAPI UMutableCPTrie * U_EXPORT2
1749 return reinterpret_cast<UMutableCPTrie *>(trie.orphan()); in umutablecptrie_open()
1752 U_CAPI UMutableCPTrie * U_EXPORT2
1753 umutablecptrie_clone(const UMutableCPTrie *other, UErrorCode *pErrorCode) { in umutablecptrie_clone()
1765 return reinterpret_cast<UMutableCPTrie *>(clone.orphan()); in umutablecptrie_clone()
1769 umutablecptrie_close(UMutableCPTrie *trie) { in umutablecptrie_close()
1773 U_CAPI UMutableCPTrie * U_EXPORT2
1782 return reinterpret_cast<UMutableCPTrie *>(MutableCodePointTrie::fromUCPMap(map, *pErrorCode)); in umutablecptrie_fromUCPMap()
1785 U_CAPI UMutableCPTrie * U_EXPORT2
1794 return reinterpret_cast<UMutableCPTrie *>(MutableCodePointTrie::fromUCPTrie(trie, *pErrorCode)); in umutablecptrie_fromUCPTrie()
[all …]
Dutrie2_impl.h147 UMutableCPTrie *t3;
Ducptrie_impl.h146 U_CFUNC void umutablecptrie_setName(UMutableCPTrie *builder, const char *name);
Drbbisetb.h124 UMutableCPTrie *fMutableTrie; // The mapping TRIE that is the end result of processing
Dnormalizer2impl.cpp420 UMutableCPTrie *mutableTrie;
/external/icu/libicu/cts_headers/
Dutrie2_impl.h147 UMutableCPTrie *t3;
Ducptrie_impl.h146 U_CFUNC void umutablecptrie_setName(UMutableCPTrie *builder, const char *name);
Drbbisetb.h124 UMutableCPTrie *fMutableTrie; // The mapping TRIE that is the end result of processing