Home
last modified time | relevance | path

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

/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/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationKeys.java197 int appendLength = (b1 == 0) ? 1 : 2; in appendWeight16() local
198 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendWeight16()
210 int appendLength = (bytes[1] == 0) ? 1 : (bytes[2] == 0) ? 2 : (bytes[3] == 0) ? 3 : 4; in appendWeight32() local
211 if ((len + appendLength) <= buffer.length || ensureCapacity(appendLength)) { in appendWeight32()
229 int appendLength = (b1 == 0) ? 1 : 2; in appendReverseWeight16() local
230 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/
Duloc.cpp1067 int32_t appendLength = updatedKeysAndValues.length(); in uloc_setKeywordValue() local
1068 if (appendLength >= bufferCapacity - needLen) { in uloc_setKeywordValue()
1070 return needLen + appendLength; in uloc_setKeywordValue()
Dnormalizer2impl.h224 UBool resize(int32_t appendLength, UErrorCode &errorCode);
Dnormalizer2impl.cpp352 UBool ReorderingBuffer::resize(int32_t appendLength, UErrorCode &errorCode) { in resize() argument
356 int32_t newCapacity=length+appendLength; in resize()
/external/icu/libicu/cts_headers/
Dnormalizer2impl.h224 UBool resize(int32_t appendLength, UErrorCode &errorCode);