Searched refs:appendCapacity (Results 1 – 11 of 11) sorted by relevance
/external/icu/icu4c/source/common/unicode/ |
D | appendable.h | 95 virtual UBool reserveAppendCapacity(int32_t appendCapacity); 200 virtual UBool reserveAppendCapacity(int32_t appendCapacity);
|
/external/icu/icu4c/source/common/ |
D | charstr.cpp | 102 int32_t appendCapacity=buffer.getCapacity()-len-1; // -1 for NUL in getAppendBuffer() local 103 if(appendCapacity>=minCapacity) { in getAppendBuffer() 104 resultCapacity=appendCapacity; in getAppendBuffer()
|
D | unistr.cpp | 1883 UnicodeStringAppendable::reserveAppendCapacity(int32_t appendCapacity) { in reserveAppendCapacity() argument 1884 return str.cloneArrayIfNeeded(str.length() + appendCapacity); in reserveAppendCapacity()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
D | CollationKeys.java | 133 protected abstract boolean Resize(int appendCapacity, int length); in Resize() argument 241 private boolean ensureCapacity(int appendCapacity) { in ensureCapacity() argument 246 int altCapacity = len + 2 * appendCapacity; in ensureCapacity()
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
D | CollationKeys.java | 129 protected abstract boolean Resize(int appendCapacity, int length); in Resize() argument 237 private boolean ensureCapacity(int appendCapacity) { in ensureCapacity() argument 242 int altCapacity = len + 2 * appendCapacity; in ensureCapacity()
|
/external/icu/icu4c/source/i18n/ |
D | collationkeys.cpp | 121 UBool ensureCapacity(int32_t appendCapacity); 183 UBool SortKeyLevel::ensureCapacity(int32_t appendCapacity) { in ensureCapacity() argument 188 int32_t altCapacity = len + 2 * appendCapacity; in ensureCapacity()
|
D | collationkeys.h | 73 virtual UBool Resize(int32_t appendCapacity, int32_t length) = 0;
|
D | rulebasedcollator.cpp | 70 virtual UBool 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) { in Resize() argument 123 int32_t altCapacity = length + 2 * appendCapacity; in Resize()
|
/external/icu/icu4c/source/test/intltest/ |
D | strtest.cpp | 517 int32_t appendCapacity = 0; in TestCharString() local 518 char *buffer = chStr.getAppendBuffer(5, 10, appendCapacity, errorCode); in TestCharString()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | RuleBasedCollator.java | 1091 protected boolean Resize(int appendCapacity, int length) { in Resize() argument 1093 int altCapacity = length + 2 * appendCapacity; in Resize()
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
D | RuleBasedCollator.java | 1117 protected boolean Resize(int appendCapacity, int length) { in Resize() argument 1119 int altCapacity = length + 2 * appendCapacity; in Resize()
|