Home
last modified time | relevance | path

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

/external/icu/android_icu4j/src/main/java/android/icu/impl/
DNormalizer2Impl.java2243 private void addToStartSet(MutableCodePointTrie mutableTrie, int origin, int decompLead) { in addToStartSet() argument
2244 int canonValue = mutableTrie.get(decompLead); in addToStartSet()
2248 mutableTrie.set(decompLead, canonValue|origin); in addToStartSet()
2255 mutableTrie.set(decompLead, canonValue); in addToStartSet()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DNormalizer2Impl.java2234 private void addToStartSet(MutableCodePointTrie mutableTrie, int origin, int decompLead) { in addToStartSet() argument
2235 int canonValue = mutableTrie.get(decompLead); in addToStartSet()
2239 mutableTrie.set(decompLead, canonValue|origin); in addToStartSet()
2246 mutableTrie.set(decompLead, canonValue); in addToStartSet()
/external/icu/icu4c/source/common/
Dnormalizer2impl.cpp420 void addToStartSet(UChar32 origin, UChar32 decompLead, UErrorCode &errorCode);
2346 void CanonIterData::addToStartSet(UChar32 origin, UChar32 decompLead, UErrorCode &errorCode) { in addToStartSet() argument
2347 uint32_t canonValue = umutablecptrie_get(mutableTrie, decompLead); in addToStartSet()
2351 umutablecptrie_set(mutableTrie, decompLead, canonValue|origin, &errorCode); in addToStartSet()
2363 umutablecptrie_set(mutableTrie, decompLead, canonValue, &errorCode); in addToStartSet()