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

1 2

  /external/chromium/third_party/icu/source/common/
unistr_props.cpp 34 int32_t oldLength = this->length();
35 int32_t i = oldLength, length;
48 if(length < oldLength) {
unistr_case.cpp 118 int32_t oldLength;
124 oldLength = fShortLength;
127 oldLength = length();
131 if(oldLength <= US_STACKBUF_SIZE) {
134 capacity = oldLength + 20;
147 oldArray, oldLength,
151 oldArray, oldLength,
158 oldArray, oldLength,
163 oldArray, oldLength,
unistr.cpp 1020 int32_t oldLength,
1030 oldText.pinIndices(oldStart, oldLength);
1033 if(oldLength == 0) {
1037 while(length > 0 && length >= oldLength) {
1038 int32_t pos = indexOf(oldText, oldStart, oldLength, start, length);
1044 replace(pos, oldLength, newText, newStart, newLength);
1045 length -= pos + oldLength - start;
1227 int32_t oldLength = this->length();
1233 if(start >= oldLength) {
1234 newSize = oldLength + srcLength
    [all...]
utext.cpp     [all...]
uhash.c 395 int32_t oldLength = hash->length;
415 hash->length = oldLength;
419 for (i = oldLength - 1; i >= 0; --i) {
    [all...]
  /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 117 int32_t oldLength;
123 oldLength = fShortLength;
126 oldLength = length();
130 if(oldLength <= US_STACKBUF_SIZE) {
133 capacity = oldLength + 20;
146 oldArray, oldLength,
150 oldArray, oldLength,
157 oldArray, oldLength,
162 oldArray, oldLength,
unistr.cpp 1032 int32_t oldLength,
1042 oldText.pinIndices(oldStart, oldLength);
1045 if(oldLength == 0) {
1049 while(length > 0 && length >= oldLength) {
1050 int32_t pos = indexOf(oldText, oldStart, oldLength, start, length);
1056 replace(pos, oldLength, newText, newStart, newLength);
1057 length -= pos + oldLength - start;
    [all...]
utext.cpp     [all...]
uhash.c 395 int32_t oldLength = hash->length;
415 hash->length = oldLength;
419 for (i = oldLength - 1; i >= 0; --i) {
    [all...]
  /libcore/luni/src/test/java/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++) {
  /external/webkit/WebCore/dom/
CharacterData.cpp 46 int oldLength = length();
54 toRenderText(renderer())->setTextWithOffset(m_data, 0, oldLength);
58 document()->textRemoved(this, 0, oldLength);
InputElement.cpp 173 unsigned oldLength = toRenderTextControlSingleLine(element->renderer())->text().numGraphemeClusters();
177 ASSERT(oldLength >= selectionLength);
180 unsigned baseLength = oldLength - selectionLength;
ProcessingInstruction.cpp 65 int oldLength = m_data.length();
67 document()->textRemoved(this, 0, oldLength);
Document.cpp     [all...]
  /libcore/luni/src/main/java/org/apache/harmony/luni/util/
HexStringParser.java 275 int oldLength = countBitsLength(mantissa);
280 if (oldLength >= MANTISSA_WIDTH && newLength > oldLength) {
  /frameworks/base/core/java/android/net/
Uri.java     [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...]
  /external/chromium/third_party/icu/source/tools/makeconv/
genmbcs.c     [all...]
  /external/icu4c/tools/makeconv/
genmbcs.c     [all...]
  /frameworks/base/core/java/android/webkit/
WebTextView.java 156 int oldLength = text.length();
160 if (KeyEvent.KEYCODE_DEL == keyCode && 0 == oldLength) {
203 boolean maxedOut = mMaxLength != -1 && oldLength == mMaxLength;
244 mWebView.replaceTextfieldText(0, oldLength, span.toString(),
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java 551 final int oldLength = mLength;
558 System.arraycopy(oldChars, 0, newChars, 0, oldLength);
561 return oldLength;
  /frameworks/base/libs/utils/
String8.cpp 383 size_t oldLength = length();
384 char* buf = lockBuffer(oldLength + n);
386 vsnprintf(buf + oldLength, n + 1, fmt, ap);
  /external/chromium/third_party/icu/public/common/unicode/
unistr.h     [all...]
  /external/icu4c/common/unicode/
unistr.h     [all...]

Completed in 4610 milliseconds

1 2