Home
last modified time | relevance | path

Searched refs:decompLead (Results 1 – 2 of 2) sorted by relevance

/external/icu/icu4c/source/common/
Dnormalizer2impl.cpp250 void addToStartSet(UChar32 origin, UChar32 decompLead, UErrorCode &errorCode);
1817 void CanonIterData::addToStartSet(UChar32 origin, UChar32 decompLead, UErrorCode &errorCode) { in addToStartSet() argument
1818 uint32_t canonValue=utrie2_get32(trie, decompLead); in addToStartSet()
1822 utrie2_set32(trie, decompLead, canonValue|origin, &errorCode); in addToStartSet()
1834 utrie2_set32(trie, decompLead, canonValue, &errorCode); in addToStartSet()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DNormalizer2Impl.java2168 private void addToStartSet(Trie2Writable newData, int origin, int decompLead) { in addToStartSet() argument
2169 int canonValue=newData.get(decompLead); in addToStartSet()
2173 newData.set(decompLead, canonValue|origin); in addToStartSet()
2180 newData.set(decompLead, canonValue); in addToStartSet()