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

1 2 3 4 5 6 7

  /external/icu/icu4c/source/common/
unistr_props.cpp 37 int32_t oldLength = this->length();
38 int32_t i = oldLength, length;
51 if(length < oldLength) {
unistr_case.cpp 103 int32_t oldLength = length();
115 if (writable ? oldLength <= UPRV_LENGTHOF(oldBuffer) : oldLength < US_STACKBUF_SIZE) {
121 u_memcpy(oldBuffer, buffer, oldLength);
135 oldString.setTo(FALSE, oldArray, oldLength);
141 oldArray, oldLength, NULL, errorCode);
161 oldString.setTo(FALSE, oldArray, oldLength);
167 oldArray, oldLength, &edits, errorCode);
170 newLength = oldLength + edits.lengthDelta();
171 if (newLength > oldLength && !cloneArrayIfNeeded(newLength, newLength))
    [all...]
ucasemap.cpp 483 int32_t oldLength = nextIndex - i;
485 change |= oldLength != newLength;
488 edits->addReplace(oldLength, newLength);
492 edits->addUnchanged(oldLength);
uhash.cpp 398 int32_t oldLength = hash->length;
418 hash->length = oldLength;
422 for (i = oldLength - 1; i >= 0; --i) {
ustrcase.cpp 952 int32_t oldLength = nextIndex - i;
954 change |= oldLength != newLength;
957 edits->addReplace(oldLength, newLength);
961 edits->addUnchanged(oldLength);
    [all...]
  /external/icu/icu4c/source/test/intltest/
testutil.h 22 int32_t oldLength, newLength;
alphaindextst.cpp 34 int32_t oldLength = dest.length();
37 if (dest.length() > oldLength) {
    [all...]
  /external/webrtc/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);
  /external/skia/tests/
PointTest.cpp 29 SkScalar oldLength = point.length();
32 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(returned, oldLength));
  /external/skqp/tests/
PointTest.cpp 29 SkScalar oldLength = point.length();
32 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(returned, oldLength));
  /libcore/luni/src/test/java/com/android/org/bouncycastle/crypto/digests/
DigestTest.java 67 int oldLength = oldDigest.doFinal(oldHash, 0);
85 assertEquals("Hash sizes must be equal", oldLength, newLength);
87 for (int i = 0; i < oldLength; i++) {
  /packages/apps/Dialer/java/com/android/incallui/rtt/impl/
RttChatMessage.java 78 int oldLength = s.length() - count + before;
79 for (int i = 0; i < oldLength - start; i++) {
  /external/icu/icu4c/source/common/unicode/
edits.h 106 void addReplace(int32_t oldLength, int32_t newLength);
269 * @return TRUE if this edit replaces oldLength() units with newLength() different ones.
270 * FALSE if oldLength units remain unchanged.
278 int32_t oldLength() const { return oldLength_; }
281 * Same as oldLength if hasChange() is FALSE.
  /libcore/luni/src/test/java/libcore/java/util/prefs/
PreferencesTest.java 87 long oldLength = userPrefs.length();
94 assertTrue("Expected file to be clobbered", oldLength != userPrefs.length());
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
OpenIntToDoubleHashMap.java 437 final int oldLength = states.length;
442 final int newLength = RESIZE_MULTIPLIER * oldLength;
447 for (int i = 0; i < oldLength; ++i) {
OpenIntToFieldHashMap.java 449 final int oldLength = states.length;
454 final int newLength = RESIZE_MULTIPLIER * oldLength;
459 for (int i = 0; i < oldLength; ++i) {
  /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/libutils/
String8.cpp 350 size_t oldLength = length();
351 char* buf = lockBuffer(oldLength + n);
353 vsnprintf(buf + oldLength, n + 1, fmt, args);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CaseMapImpl.java 401 result.append(src, i, i + ei.oldLength());
    [all...]
  /external/icu/icu4c/source/tools/makeconv/
genmbcs.cpp     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CaseMapImpl.java 397 result.append(src, i, i + ei.oldLength());
    [all...]
  /frameworks/support/compat/src/main/java/androidx/core/app/
ShareCompat.java 294 int oldLength = old != null ? old.length : 0;
295 String[] result = new String[oldLength + add.length];
296 if (old != null) System.arraycopy(old, 0, result, 0, oldLength);
297 System.arraycopy(add, 0, result, oldLength, add.length);
    [all...]
  /system/core/logd/
LogStatistics.cpp 621 size_t oldLength;
626 oldLength = output.length();
630 spaces += spaces_total + oldLength - output.length();
643 oldLength = output.length();
651 spaces += spaces_total + oldLength - output.length();
668 oldLength = output.length();
675 spaces -= output.length() - oldLength;
721 oldLength = output.length();
733 spaces -= output.length() - oldLength;
754 oldLength = output.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...]

Completed in 557 milliseconds

1 2 3 4 5 6 7