HomeSort by relevance Sort by last modified time
    Searched defs:oldLength (Results 1 - 25 of 26) sorted by null

1 2

  /external/icu4c/common/
unistr_props.cpp 34 int32_t oldLength = this->length();
35 int32_t i = oldLength, length;
48 if(length < oldLength) {
unistr_case.cpp 110 int32_t oldLength;
116 oldLength = fShortLength;
119 oldLength = length();
123 if(oldLength <= US_STACKBUF_SIZE) {
126 capacity = oldLength + 20;
140 oldArray, oldLength,
144 oldArray, oldLength,
151 oldArray, oldLength,
156 oldArray, oldLength,
uhash.c 395 int32_t oldLength = hash->length;
415 hash->length = oldLength;
419 for (i = oldLength - 1; i >= 0; --i) {
    [all...]
unistr.cpp 1033 int32_t oldLength,
1043 oldText.pinIndices(oldStart, oldLength);
1046 if(oldLength == 0) {
1050 while(length > 0 && length >= oldLength) {
1051 int32_t pos = indexOf(oldText, oldStart, oldLength, start, length);
1057 replace(pos, oldLength, newText, newStart, newLength);
1058 length -= pos + oldLength - start;
    [all...]
utext.cpp     [all...]
  /external/webkit/Source/WebCore/dom/
CharacterData.cpp 42 unsigned oldLength = length();
44 setDataAndUpdate(dataImpl, 0, oldLength, dataImpl->length());
45 document()->textRemoved(this, 0, oldLength);
59 unsigned oldLength = m_data->length();
61 unsigned end = min(dataLength, lengthLimit - oldLength);
80 updateRenderer(oldLength, 0);
171 void CharacterData::setDataAndUpdate(PassRefPtr<StringImpl> newData, unsigned offsetOfReplacedData, unsigned oldLength, unsigned newLength)
174 document()->frame()->selection()->textWillBeReplaced(this, offsetOfReplacedData, oldLength, newLength);
177 updateRenderer(offsetOfReplacedData, oldLength);
ProcessingInstruction.cpp 69 int oldLength = m_data.length();
71 document()->textRemoved(this, 0, oldLength);
InputElement.cpp 185 unsigned oldLength = numGraphemeClusters(toRenderTextControlSingleLine(element->renderer())->text());
193 ASSERT(oldLength >= selectionLength);
196 unsigned baseLength = oldLength - selectionLength;
Document.cpp     [all...]
  /libcore/luni/src/test/java/com/android/org/bouncycastle/crypto/digests/
DigestTest.java 65 int oldLength = oldDigest.doFinal(oldHash, 0);
79 assertEquals("Hash sizes must be equal", oldLength, newLength);
81 for (int i = 0; i < oldLength; i++) {
  /libcore/luni/src/test/java/libcore/java/util/prefs/
PreferencesTest.java 38 long oldLength = userPrefs.length();
45 assertTrue("Expected file to be clobbered", oldLength != userPrefs.length());
  /frameworks/base/libs/utils/
String8.cpp 317 size_t oldLength = length();
318 char* buf = lockBuffer(oldLength + n);
320 vsnprintf(buf + oldLength, n + 1, fmt, args);
  /libcore/luni/src/main/java/java/lang/
HexStringParser.java 265 int oldLength = countBitsLength(mantissa);
270 if (oldLength >= MANTISSA_WIDTH && newLength > oldLength) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeViewRefactoring.java 172 int oldLength = oldName.length();
174 oldLength, name));
177 int oldLength = oldName.length();
178 rootEdit.addChild(new ReplaceEdit(region.getStartOffset() + close, oldLength,
ChangeLayoutRefactoring.java 235 int oldLength = oldName.length();
236 rootEdit.addChild(new ReplaceEdit(mSelectionStart + open, oldLength, name));
238 rootEdit.addChild(new ReplaceEdit(mSelectionStart + close, oldLength, name));
374 int oldLength = oldName.length();
375 rootEdit.addChild(new ReplaceEdit(mSelectionStart + open, oldLength,
379 oldLength, TABLE_ROW));
  /external/icu4c/tools/makeconv/
genmbcs.c     [all...]
  /frameworks/support/v4/java/android/support/v4/app/
ShareCompat.java 302 int oldLength = old != null ? old.length : 0;
303 String[] result = new String[oldLength + add.length];
304 if (old != null) System.arraycopy(old, 0, result, 0, oldLength);
305 System.arraycopy(add, 0, result, oldLength, add.length);
    [all...]
  /external/proguard/src/proguard/classfile/editor/
CodeAttributeEditor.java 513 int oldLength = codeAttribute.u4codeLength;
516 if (instructionOffsetMap.length < oldLength + 1)
518 instructionOffsetMap = new int[oldLength + 1];
523 oldLength);
539 oldLength);
549 * @param oldLength the code length.
552 private int mapInstructions(byte[] oldCode, int oldLength)
574 while (oldOffset < oldLength);
629 * @param oldLength the original code length.
635 int oldLength)
    [all...]
  /libcore/luni/src/main/java/libcore/io/
DiskLruCache.java 458 long oldLength = entry.lengths[i];
461 size = size - oldLength + newLength;
  /external/webkit/Source/WebCore/editing/
TextIterator.cpp     [all...]
  /frameworks/base/core/java/android/net/
Uri.java     [all...]
  /frameworks/base/core/java/android/webkit/
WebTextView.java 347 int oldLength = text.length();
348 boolean maxedOut = mMaxLength != -1 && oldLength == mMaxLength;
390 mWebView.replaceTextfieldText(0, oldLength, span.toString(),
    [all...]
  /frameworks/base/core/java/android/accounts/
AccountManagerService.java     [all...]
  /external/icu4c/i18n/
ucol.cpp     [all...]
  /prebuilt/common/ecj/
ecj.jar 

Completed in 1934 milliseconds

1 2