Home
last modified time | relevance | path

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

/external/icu4c/common/
Dcharstr.cpp90 int32_t appendCapacity=buffer.getCapacity()-len-1; // -1 for NUL in getAppendBuffer() local
91 if(appendCapacity>=minCapacity) { in getAppendBuffer()
92 resultCapacity=appendCapacity; in getAppendBuffer()
Dunistr.cpp1653 UnicodeStringAppendable::reserveAppendCapacity(int32_t appendCapacity) { in reserveAppendCapacity() argument
1654 return str.cloneArrayIfNeeded(str.length() + appendCapacity); in reserveAppendCapacity()
/external/icu4c/common/unicode/
Dappendable.h87 virtual UBool reserveAppendCapacity(int32_t appendCapacity);
190 virtual UBool reserveAppendCapacity(int32_t appendCapacity);
/external/icu4c/test/intltest/
Dstrtest.cpp544 int32_t appendCapacity = 0; in TestCharString() local
545 char *buffer = chStr.getAppendBuffer(5, 10, appendCapacity, errorCode); in TestCharString()
/external/icu4c/i18n/
Ducol.cpp4335 UBool Resize(int32_t appendCapacity, int32_t length);
4420 SortKeyByteSink::Resize(int32_t appendCapacity, int32_t length) { in Resize() argument
4425 int32_t altCapacity = length + 2 * appendCapacity; in Resize()