Searched defs:leadUnit (Results 1 - 3 of 3) sorted by relevance

/external/icu/icu4c/source/common/unicode/
H A Ducharstrie.h222 int32_t leadUnit=*pos++; local
223 // U_ASSERT(leadUnit>=kMinValueLead);
224 return leadUnit&kValueIsFinal ?
225 readValue(pos, leadUnit&0x7fff) : readNodeValue(pos, leadUnit);
381 // pos is already after the leadUnit, and the lead unit has bit 15 reset.
382 static inline int32_t readValue(const UChar *pos, int32_t leadUnit) { argument
384 if(leadUnit<kMinTwoUnitValueLead) {
385 value=leadUnit;
386 } else if(leadUnit<kThreeUnitValueLea
393 skipValue(const UChar *pos, int32_t leadUnit) argument
404 int32_t leadUnit=*pos++; local
408 readNodeValue(const UChar *pos, int32_t leadUnit) argument
420 skipNodeValue(const UChar *pos, int32_t leadUnit) argument
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DCharsTrie.java304 int leadUnit=chars_.charAt(pos++);
305 assert(leadUnit>=kMinValueLead);
306 return (leadUnit&kValueIsFinal)!=0 ?
307 readValue(chars_, pos, leadUnit&0x7fff) : readNodeValue(chars_, pos, leadUnit);
620 // pos is already after the leadUnit, and the lead unit has bit 15 reset.
621 private static int readValue(CharSequence chars, int pos, int leadUnit) { argument
623 if(leadUnit<kMinTwoUnitValueLead) {
624 value=leadUnit;
625 } else if(leadUnit<kThreeUnitValueLea
632 skipValue(int pos, int leadUnit) argument
647 readNodeValue(CharSequence chars, int pos, int leadUnit) argument
659 skipNodeValue(int pos, int leadUnit) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DCharsTrie.java317 int leadUnit=chars_.charAt(pos++);
318 assert(leadUnit>=kMinValueLead);
319 return (leadUnit&kValueIsFinal)!=0 ?
320 readValue(chars_, pos, leadUnit&0x7fff) : readNodeValue(chars_, pos, leadUnit);
646 // pos is already after the leadUnit, and the lead unit has bit 15 reset.
647 private static int readValue(CharSequence chars, int pos, int leadUnit) { argument
649 if(leadUnit<kMinTwoUnitValueLead) {
650 value=leadUnit;
651 } else if(leadUnit<kThreeUnitValueLea
658 skipValue(int pos, int leadUnit) argument
673 readNodeValue(CharSequence chars, int pos, int leadUnit) argument
685 skipNodeValue(int pos, int leadUnit) argument
[all...]

Completed in 69 milliseconds