Searched defs:newLength (Results 1 - 25 of 27) sorted by relevance

12

/external/webkit/WebCore/platform/text/
H A DStringBuffer.h50 void shrink(unsigned newLength) argument
52 ASSERT(newLength <= m_length);
53 m_length = newLength;
56 void resize(unsigned newLength) argument
58 if (newLength > m_length)
59 m_data = static_cast<UChar*>(fastRealloc(m_data, newLength * sizeof(UChar)));
60 m_length = newLength;
/external/webkit/WebCore/bindings/js/
H A DJSHTMLOptionsCollectionCustom.cpp48 unsigned newLength = 0; local
54 newLength = UINT_MAX;
56 newLength = static_cast<unsigned>(lengthValue);
59 imp->setLength(newLength, ec);
/external/guava/src/com/google/common/collect/
H A DObjectArrays.java106 private static <T> T[] arraysCopyOf(T[] original, int newLength) { argument
107 T[] copy = newArray(original, newLength);
109 original, 0, copy, 0, Math.min(original.length, newLength));
/external/webkit/WebCore/bindings/v8/custom/
H A DV8HTMLOptionsCollectionCustom.cpp101 unsigned newLength = 0; local
107 newLength = UINT_MAX;
109 newLength = static_cast<unsigned>(v);
/external/webkit/WebCore/storage/
H A DStorageMap.cpp116 unsigned newLength = m_currentLength; local
117 bool overflow = newLength + value.length() < newLength;
118 newLength += value.length();
121 overflow |= newLength - oldValue.length() > newLength;
122 newLength -= oldValue.length();
125 overflow |= newLength + adjustedKeyLength < newLength;
126 newLength
[all...]
/external/chromium/third_party/icu/source/common/
H A Dunistr_case.cpp142 int32_t newLength; local
146 newLength = ustr_toLower(csp, getArrayStart(), getCapacity(),
150 newLength = ustr_toUpper(csp, getArrayStart(), getCapacity(),
157 newLength = ustr_toTitle(csp, getArrayStart(), getCapacity(),
162 newLength = ustr_foldCase(csp, getArrayStart(), getCapacity(),
167 setLength(newLength);
168 } while(errorCode==U_BUFFER_OVERFLOW_ERROR && cloneArrayIfNeeded(newLength, newLength, FALSE));
H A Dunistr.cpp1023 int32_t newLength)
1031 newText.pinIndices(newStart, newLength);
1044 replace(pos, oldLength, newText, newStart, newLength);
1046 start = pos + newLength;
1459 UnicodeString::releaseBuffer(int32_t newLength) { argument
1460 if(fFlags&kOpenGetBuffer && newLength>=-1) {
1463 if(newLength==-1) {
1469 newLength=(int32_t)(p-array);
1470 } else if(newLength>capacity) {
1471 newLength
1016 findAndReplace(int32_t start, int32_t length, const UnicodeString& oldText, int32_t oldStart, int32_t oldLength, const UnicodeString& newText, int32_t newStart, int32_t newLength) argument
[all...]
H A Dutext.cpp1915 int32_t newLength = rep->length(); local
1916 int32_t lengthDelta = newLength - oldLength;
2176 int32_t newLength = us->length(); local
2180 ut->chunkLength = newLength;
2181 ut->chunkNativeLimit = newLength;
2182 ut->nativeIndexingLimit = newLength;
2185 int32_t lengthDelta = newLength - oldLength;
/external/icu4c/common/
H A Dunistr_case.cpp141 int32_t newLength; local
145 newLength = ustr_toLower(csp, getArrayStart(), getCapacity(),
149 newLength = ustr_toUpper(csp, getArrayStart(), getCapacity(),
156 newLength = ustr_toTitle(csp, getArrayStart(), getCapacity(),
161 newLength = ustr_foldCase(csp, getArrayStart(), getCapacity(),
166 setLength(newLength);
167 } while(errorCode==U_BUFFER_OVERFLOW_ERROR && cloneArrayIfNeeded(newLength, newLength, FALSE));
H A Dunistr.cpp1035 int32_t newLength)
1043 newText.pinIndices(newStart, newLength);
1056 replace(pos, oldLength, newText, newStart, newLength);
1058 start = pos + newLength;
1491 UnicodeString::releaseBuffer(int32_t newLength) { argument
1492 if(fFlags&kOpenGetBuffer && newLength>=-1) {
1495 if(newLength==-1) {
1501 newLength=(int32_t)(p-array);
1502 } else if(newLength>capacity) {
1503 newLength
1028 findAndReplace(int32_t start, int32_t length, const UnicodeString& oldText, int32_t oldStart, int32_t oldLength, const UnicodeString& newText, int32_t newStart, int32_t newLength) argument
[all...]
H A Dutext.cpp2274 int32_t newLength = rep->length(); local
2275 int32_t lengthDelta = newLength - oldLength;
2538 int32_t newLength = us->length(); local
2542 ut->chunkLength = newLength;
2543 ut->chunkNativeLimit = newLength;
2544 ut->nativeIndexingLimit = newLength;
2547 int32_t lengthDelta = newLength - oldLength;
/external/chromium/third_party/icu/source/i18n/
H A Drbt_rule.cpp451 int32_t newLength = output->toReplacer()->replace(text, pos.start, keyLimit, newStart); local
452 int32_t lenDelta = newLength - (keyLimit - pos.start);
H A Dwinnmfmt.cpp257 int newLength;
260 newLength = _vscwprintf(fmt, args);
263 nBuffer = NEW_ARRAY(UChar, newLength + 1);
266 result = _vsnwprintf(nBuffer, newLength + 1, fmt, args);
308 int newLength = GetCurrencyFormatW(fLCID, 0, nBuffer, &formatInfo.currency, NULL, 0); local
310 buffer = NEW_ARRAY(UChar, newLength);
312 GetCurrencyFormatW(fLCID, 0, nBuffer, &formatInfo.currency, buffer, newLength);
328 int newLength = GetNumberFormatW(fLCID, 0, nBuffer, &formatInfo.number, NULL, 0); local
330 buffer = NEW_ARRAY(UChar, newLength);
332 GetNumberFormatW(fLCID, 0, nBuffer, &formatInfo.number, buffer, newLength);
[all...]
H A Dwindtfmt.cpp245 int newLength = GetDateFormatW(fLCID, dfFlags[fDateStyle - kDateOffset], st, NULL, NULL, 0); local
247 buffer = NEW_ARRAY(UChar, newLength);
248 GetDateFormatW(fLCID, dfFlags[fDateStyle - kDateOffset], st, NULL, buffer, newLength);
271 int newLength = GetTimeFormatW(fLCID, tfFlags[fTimeStyle], st, NULL, NULL, 0); local
273 buffer = NEW_ARRAY(UChar, newLength);
274 GetDateFormatW(fLCID, tfFlags[fTimeStyle], st, NULL, buffer, newLength);
/external/chromium/third_party/icu/source/test/intltest/
H A Dwinnmtst.cpp151 int newLength;
154 newLength = _vscwprintf(fmt, args);
157 nBuffer = NEW_ARRAY(UChar, newLength + 1);
160 result = _vsnwprintf(nBuffer, newLength + 1, fmt, args);
193 int newLength = GetCurrencyFormatW(lcid, 0, nBuffer, NULL, NULL, 0); local
195 buffer = NEW_ARRAY(UChar, newLength);
197 GetCurrencyFormatW(lcid, 0, nBuffer, NULL, buffer, newLength);
207 int newLength = GetNumberFormatW(lcid, 0, nBuffer, NULL, NULL, 0); local
209 buffer = NEW_ARRAY(UChar, newLength);
211 GetNumberFormatW(lcid, 0, nBuffer, NULL, buffer, newLength);
[all...]
/external/chromium/third_party/icu/source/tools/toolutil/
H A Dpkg_gencmn.c487 int32_t newLength; local
492 newLength = (length + 1 + (int32_t)uprv_strlen(source));
493 fullPath = uprv_malloc(newLength);
/external/icu4c/i18n/
H A Drbt_rule.cpp451 int32_t newLength = output->toReplacer()->replace(text, pos.start, keyLimit, newStart); local
452 int32_t lenDelta = newLength - (keyLimit - pos.start);
H A Dwinnmfmt.cpp257 int newLength;
260 newLength = _vscwprintf(fmt, args);
263 nBuffer = NEW_ARRAY(UChar, newLength + 1);
266 result = _vsnwprintf(nBuffer, newLength + 1, fmt, args);
308 int newLength = GetCurrencyFormatW(fLCID, 0, nBuffer, &formatInfo.currency, NULL, 0); local
310 buffer = NEW_ARRAY(UChar, newLength);
312 GetCurrencyFormatW(fLCID, 0, nBuffer, &formatInfo.currency, buffer, newLength);
328 int newLength = GetNumberFormatW(fLCID, 0, nBuffer, &formatInfo.number, NULL, 0); local
330 buffer = NEW_ARRAY(UChar, newLength);
332 GetNumberFormatW(fLCID, 0, nBuffer, &formatInfo.number, buffer, newLength);
[all...]
H A Dwindtfmt.cpp245 int newLength = GetDateFormatW(fLCID, dfFlags[fDateStyle - kDateOffset], st, NULL, NULL, 0); local
247 buffer = NEW_ARRAY(UChar, newLength);
248 GetDateFormatW(fLCID, dfFlags[fDateStyle - kDateOffset], st, NULL, buffer, newLength);
271 int newLength = GetTimeFormatW(fLCID, tfFlags[fTimeStyle], st, NULL, NULL, 0); local
273 buffer = NEW_ARRAY(UChar, newLength);
274 GetDateFormatW(fLCID, tfFlags[fTimeStyle], st, NULL, buffer, newLength);
H A Drematch.cpp1377 int32_t newLength = us->length(); local
1382 ut->chunkLength = newLength;
1383 ut->chunkNativeLimit = newLength;
1384 ut->nativeIndexingLimit = newLength;
/external/icu4c/test/intltest/
H A Dwinnmtst.cpp151 int newLength;
154 newLength = _vscwprintf(fmt, args);
157 nBuffer = NEW_ARRAY(UChar, newLength + 1);
160 result = _vsnwprintf(nBuffer, newLength + 1, fmt, args);
193 int newLength = GetCurrencyFormatW(lcid, 0, nBuffer, NULL, NULL, 0); local
195 buffer = NEW_ARRAY(UChar, newLength);
197 GetCurrencyFormatW(lcid, 0, nBuffer, NULL, buffer, newLength);
207 int newLength = GetNumberFormatW(lcid, 0, nBuffer, NULL, NULL, 0); local
209 buffer = NEW_ARRAY(UChar, newLength);
211 GetNumberFormatW(lcid, 0, nBuffer, NULL, buffer, newLength);
[all...]
/external/icu4c/tools/toolutil/
H A Dpkg_gencmn.c487 int32_t newLength; local
492 newLength = (length + 1 + (int32_t)uprv_strlen(source));
493 fullPath = uprv_malloc(newLength);
/external/webkit/WebCore/dom/
H A DInputElement.cpp154 unsigned newLength = string.numCharactersInGraphemeClusters(maxLength); local
155 for (unsigned i = 0; i < newLength; ++i) {
158 newLength = i;
162 return string.left(newLength);
H A DNamedAttrMap.cpp227 unsigned newLength = other.length(); local
228 m_attributes.resize(newLength);
229 for (unsigned i = 0; i < newLength; i++)
236 for (unsigned i = 0; i < newLength; i++)
/external/webkit/JavaScriptCore/runtime/
H A DJSArray.cpp105 static inline unsigned increasedVectorLength(unsigned newLength) argument
107 ASSERT(newLength <= MAX_STORAGE_VECTOR_LENGTH);
110 // increasedLength = (newLength * 3 + 1) / 2;
112 // increasedLength = (unsigned)ceil(newLength * 1.5));
114 unsigned increasedLength = newLength + (newLength >> 1) + (newLength & 1);
115 ASSERT(increasedLength >= newLength);
284 unsigned newLength = value.toUInt32(exec); local
285 if (value.toNumber(exec) != static_cast<double>(newLength)) {
498 increaseVectorLength(unsigned newLength) argument
525 setLength(unsigned newLength) argument
[all...]

Completed in 195 milliseconds

12