Searched defs:appendCapacity (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/icu/source/common/
H A Dcharstr.cpp90 int32_t appendCapacity=buffer.getCapacity()-len-1; // -1 for NUL local
91 if(appendCapacity>=minCapacity) {
92 resultCapacity=appendCapacity;
H A Dunistr.cpp1767 UnicodeStringAppendable::reserveAppendCapacity(int32_t appendCapacity) { argument
1768 return str.cloneArrayIfNeeded(str.length() + appendCapacity);
/external/icu/icu4c/source/common/
H A Dcharstr.cpp90 int32_t appendCapacity=buffer.getCapacity()-len-1; // -1 for NUL local
91 if(appendCapacity>=minCapacity) {
92 resultCapacity=appendCapacity;
H A Dunistr.cpp1767 UnicodeStringAppendable::reserveAppendCapacity(int32_t appendCapacity) { argument
1768 return str.cloneArrayIfNeeded(str.length() + appendCapacity);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dstrtest.cpp512 int32_t appendCapacity = 0; local
513 char *buffer = chStr.getAppendBuffer(5, 10, appendCapacity, errorCode);
/external/icu/icu4c/source/test/intltest/
H A Dstrtest.cpp512 int32_t appendCapacity = 0; local
513 char *buffer = chStr.getAppendBuffer(5, 10, appendCapacity, errorCode);
/external/icu/icu4c/source/i18n/
H A Dcollationkeys.cpp119 UBool ensureCapacity(int32_t appendCapacity);
181 UBool SortKeyLevel::ensureCapacity(int32_t appendCapacity) { argument
186 int32_t altCapacity = len + 2 * appendCapacity;
H A Drulebasedcollator.cpp70 virtual UBool Resize(int32_t appendCapacity, int32_t length);
86 FixedSortKeyByteSink::Resize(int32_t /*appendCapacity*/, int32_t /*length*/) {
102 virtual UBool Resize(int32_t appendCapacity, int32_t length);
118 CollationKeyByteSink::Resize(int32_t appendCapacity, int32_t length) { argument
123 int32_t altCapacity = length + 2 * appendCapacity;
/external/chromium_org/third_party/icu/source/i18n/
H A Ducol.cpp4227 virtual UBool Resize(int32_t appendCapacity, int32_t length) = 0;
4294 virtual UBool Resize(int32_t appendCapacity, int32_t length);
4310 FixedSortKeyByteSink::Resize(int32_t /*appendCapacity*/, int32_t /*length*/) {
4323 virtual UBool Resize(int32_t appendCapacity, int32_t length);
4339 CollationKeyByteSink::Resize(int32_t appendCapacity, int32_t length) { argument
4344 int32_t altCapacity = length + 2 * appendCapacity;
4400 UBool ensureCapacity(int32_t appendCapacity);
4412 UBool SortKeyLevel::ensureCapacity(int32_t appendCapacity) { argument
4417 int32_t altCapacity = len + 2 * appendCapacity;

Completed in 1357 milliseconds