Home
last modified time | relevance | path

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

/external/icu/icu4c/source/i18n/
Dcollationkeys.cpp136 int32_t appendLength = (b1 == 0) ? 1 : 2; in appendWeight16() local
149 int32_t appendLength = (bytes[1] == 0) ? 1 : (bytes[2] == 0) ? 2 : (bytes[3] == 0) ? 3 : 4; in appendWeight32() local
169 int32_t appendLength = (b1 == 0) ? 1 : 2; in appendReverseWeight16() local
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationKeys.java185 int appendLength = (b1 == 0) ? 1 : 2; in appendWeight16() local
198 int appendLength = (bytes[1] == 0) ? 1 : (bytes[2] == 0) ? 2 : (bytes[3] == 0) ? 3 : 4; in appendWeight32() local
217 int appendLength = (b1 == 0) ? 1 : 2; in appendReverseWeight16() local
/external/icu/icu4c/source/common/
Dnormalizer2impl.cpp179 UBool ReorderingBuffer::resize(int32_t appendLength, UErrorCode &errorCode) { in resize()