Home
last modified time | relevance | path

Searched refs:appendLength (Results 1 – 5 of 5) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationKeys.java191 int appendLength = (b1 == 0) ? 1 : 2; in appendWeight16() local
192 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendWeight16()
204 int appendLength = (bytes[1] == 0) ? 1 : (bytes[2] == 0) ? 2 : (bytes[3] == 0) ? 3 : 4; in appendWeight32() local
205 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendWeight32()
223 int appendLength = (b1 == 0) ? 1 : 2; in appendReverseWeight16() local
224 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendReverseWeight16()
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationKeys.java187 int appendLength = (b1 == 0) ? 1 : 2; in appendWeight16() local
188 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendWeight16()
200 int appendLength = (bytes[1] == 0) ? 1 : (bytes[2] == 0) ? 2 : (bytes[3] == 0) ? 3 : 4; in appendWeight32() local
201 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendWeight32()
219 int appendLength = (b1 == 0) ? 1 : 2; in appendReverseWeight16() local
220 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendReverseWeight16()
/external/icu/icu4c/source/i18n/
Dcollationkeys.cpp138 int32_t appendLength = (b1 == 0) ? 1 : 2; in appendWeight16() local
139 if((len + appendLength) <= buffer.getCapacity() || ensureCapacity(appendLength)) { in appendWeight16()
151 int32_t appendLength = (bytes[1] == 0) ? 1 : (bytes[2] == 0) ? 2 : (bytes[3] == 0) ? 3 : 4; in appendWeight32() local
152 if((len + appendLength) <= buffer.getCapacity() || ensureCapacity(appendLength)) { in appendWeight32()
171 int32_t appendLength = (b1 == 0) ? 1 : 2; in appendReverseWeight16() local
172 if((len + appendLength) <= buffer.getCapacity() || ensureCapacity(appendLength)) { in appendReverseWeight16()
/external/icu/icu4c/source/common/
Dnormalizer2impl.h205 UBool resize(int32_t appendLength, UErrorCode &errorCode);
Dnormalizer2impl.cpp181 UBool ReorderingBuffer::resize(int32_t appendLength, UErrorCode &errorCode) { in resize() argument
185 int32_t newCapacity=length+appendLength; in resize()