Home
last modified time | relevance | path

Searched defs:appendLength (Results 1 – 4 of 4) sorted by relevance

/external/icu/icu4c/source/i18n/
Dcollationkeys.cpp138 int32_t appendLength = (b1 == 0) ? 1 : 2; in appendWeight16() local
151 int32_t appendLength = (bytes[1] == 0) ? 1 : (bytes[2] == 0) ? 2 : (bytes[3] == 0) ? 3 : 4; in appendWeight32() local
171 int32_t appendLength = (b1 == 0) ? 1 : 2; in appendReverseWeight16() local
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationKeys.java187 int appendLength = (b1 == 0) ? 1 : 2; in appendWeight16() local
200 int appendLength = (bytes[1] == 0) ? 1 : (bytes[2] == 0) ? 2 : (bytes[3] == 0) ? 3 : 4; in appendWeight32() local
219 int appendLength = (b1 == 0) ? 1 : 2; in appendReverseWeight16() local
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationKeys.java197 int appendLength = (b1 == 0) ? 1 : 2; in appendWeight16() local
210 int appendLength = (bytes[1] == 0) ? 1 : (bytes[2] == 0) ? 2 : (bytes[3] == 0) ? 3 : 4; in appendWeight32() local
229 int appendLength = (b1 == 0) ? 1 : 2; in appendReverseWeight16() local
/external/icu/icu4c/source/common/
Dnormalizer2impl.cpp353 UBool ReorderingBuffer::resize(int32_t appendLength, UErrorCode &errorCode) { in resize()