Home
last modified time | relevance | path

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

/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationKeys.java185 int appendLength = (b1 == 0) ? 1 : 2; in appendWeight16() local
186 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendWeight16()
198 int appendLength = (bytes[1] == 0) ? 1 : (bytes[2] == 0) ? 2 : (bytes[3] == 0) ? 3 : 4; in appendWeight32() local
199 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendWeight32()
217 int appendLength = (b1 == 0) ? 1 : 2; in appendReverseWeight16() local
218 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendReverseWeight16()
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationKeys.java189 int appendLength = (b1 == 0) ? 1 : 2; in appendWeight16() local
190 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendWeight16()
202 int appendLength = (bytes[1] == 0) ? 1 : (bytes[2] == 0) ? 2 : (bytes[3] == 0) ? 3 : 4; in appendWeight32() local
203 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendWeight32()
221 int appendLength = (b1 == 0) ? 1 : 2; in appendReverseWeight16() local
222 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendReverseWeight16()
/external/icu/icu4c/source/i18n/
Dcollationkeys.cpp136 int32_t appendLength = (b1 == 0) ? 1 : 2; in appendWeight16() local
137 if((len + appendLength) <= buffer.getCapacity() || ensureCapacity(appendLength)) { in appendWeight16()
149 int32_t appendLength = (bytes[1] == 0) ? 1 : (bytes[2] == 0) ? 2 : (bytes[3] == 0) ? 3 : 4; in appendWeight32() local
150 if((len + appendLength) <= buffer.getCapacity() || ensureCapacity(appendLength)) { in appendWeight32()
169 int32_t appendLength = (b1 == 0) ? 1 : 2; in appendReverseWeight16() local
170 if((len + appendLength) <= buffer.getCapacity() || ensureCapacity(appendLength)) { in appendReverseWeight16()
/external/icu/icu4c/source/common/
Dnormalizer2impl.h203 UBool resize(int32_t appendLength, UErrorCode &errorCode);
Dnormalizer2impl.cpp179 UBool ReorderingBuffer::resize(int32_t appendLength, UErrorCode &errorCode) { in resize() argument
183 int32_t newCapacity=length+appendLength; in resize()