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

1 2 3 4

  /external/chromium_org/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 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...]
  /external/icu/icu4c/source/common/
unistr_props.cpp 35 int32_t oldLength = this->length();
36 int32_t i = oldLength, length;
49 if(length < oldLength) {
unistr_case.cpp 101 int32_t oldLength;
107 oldLength = fShortLength;
110 oldLength = length();
114 if(oldLength <= US_STACKBUF_SIZE) {
117 capacity = oldLength + 20;
130 oldArray, oldLength, &errorCode);
uhash.c 396 int32_t oldLength = hash->length;
416 hash->length = oldLength;
420 for (i = oldLength - 1; i >= 0; --i) {
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CharacterData.cpp 52 unsigned oldLength = length();
54 setDataAndUpdate(nonNullData, 0, oldLength, nonNullData.length());
55 document().didRemoveText(this, 0, oldLength);
70 unsigned oldLength = m_data.length();
75 toText(this)->updateTextRenderer(oldLength, 0);
171 void CharacterData::setDataAndUpdate(const String& newData, unsigned offsetOfReplacedData, unsigned oldLength, unsigned newLength, RecalcStyleBehavior recalcStyleBehavior)
178 toText(this)->updateTextRenderer(offsetOfReplacedData, oldLength, recalcStyleBehavior);
184 document().frame()->selection().didUpdateCharacterData(this, offsetOfReplacedData, oldLength, newLength);
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtcp_receiver_help.cc 58 uint16_t oldLength = applicationLength;
71 memcpy(applicationData, oldData, oldLength);
72 memcpy(applicationData+oldLength, data, copySize);
  /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++) {
  /external/chromium_org/third_party/skia/tests/
PointTest.cpp 30 SkScalar oldLength = point.length();
33 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(returned, oldLength));
  /external/skia/tests/
PointTest.cpp 30 SkScalar oldLength = point.length();
33 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(returned, oldLength));
  /libcore/luni/src/test/java/libcore/java/util/prefs/
PreferencesTest.java 79 long oldLength = userPrefs.length();
86 assertTrue("Expected file to be clobbered", oldLength != userPrefs.length());
  /system/core/libutils/
String8.cpp 338 size_t oldLength = length();
339 char* buf = lockBuffer(oldLength + n);
341 vsnprintf(buf + oldLength, n + 1, fmt, args);
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
TextFieldInputType.cpp 415 unsigned oldLength = element().innerEditorValue().length();
423 ASSERT(oldLength >= selectionLength);
426 unsigned baseLength = oldLength - selectionLength;
  /external/icu/icu4c/source/test/intltest/
alphaindextst.cpp 33 int32_t oldLength = dest.length();
36 if (dest.length() > oldLength) {
  /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 181 int oldLength = oldName.length();
183 oldLength, name));
186 int oldLength = oldName.length();
187 rootEdit.addChild(new ReplaceEdit(region.getStartOffset() + close, oldLength,
  /system/core/logd/
LogStatistics.cpp 523 size_t oldLength;
530 oldLength = string.length();
535 spaces += spaces_total + oldLength - string.length();
557 oldLength = string.length();
563 spaces += spaces_total + oldLength - string.length();
579 oldLength = string.length();
584 spaces -= string.length() - oldLength;
695 oldLength = string.length();
700 spaces += spaces_time + oldLength - string.length();
712 oldLength = string.length()
    [all...]
  /external/chromium_org/third_party/icu/source/tools/makeconv/
genmbcs.c     [all...]
  /external/icu/icu4c/source/tools/makeconv/
genmbcs.cpp     [all...]
  /frameworks/support/v4/java/android/support/v4/app/
ShareCompat.java 359 int oldLength = old != null ? old.length : 0;
360 String[] result = new String[oldLength + add.length];
361 if (old != null) System.arraycopy(old, 0, result, 0, oldLength);
362 System.arraycopy(add, 0, result, oldLength, add.length);
    [all...]
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 587 long oldLength = entry.lengths[i];
590 size = size - oldLength + newLength;
    [all...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 587 long oldLength = entry.lengths[i];
590 size = size - oldLength + newLength;
    [all...]
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
DiskLruCache.java 587 long oldLength = entry.lengths[i];
590 size = size - oldLength + newLength;
    [all...]

Completed in 1285 milliseconds

1 2 3 4