Searched defs:oldLength (Results 1 - 25 of 34) sorted by relevance

12

/external/icu/icu4c/source/common/
H A Dunistr_props.cpp37 int32_t oldLength = this->length(); local
38 int32_t i = oldLength, length;
51 if(length < oldLength) {
H A Dunistr_case.cpp103 int32_t oldLength; local
108 oldLength = getShortLength();
109 u_memcpy(oldStackBuffer, fUnion.fStackFields.fBuffer, oldLength);
112 oldLength = length();
116 if(oldLength <= US_STACKBUF_SIZE) {
119 capacity = oldLength + 20;
132 oldArray, oldLength, &errorCode);
H A Duhash.c398 int32_t oldLength = hash->length; local
418 hash->length = oldLength;
422 for (i = oldLength - 1; i >= 0; --i) {
H A Dmessagepattern.cpp97 UBool ensureCapacityForOneMore(int32_t oldLength, UErrorCode &errorCode);
125 MessagePatternList<T, stackCapacity>::ensureCapacityForOneMore(int32_t oldLength, UErrorCode &errorCode) { argument
129 if(a.getCapacity()>oldLength || a.resize(2*oldLength, oldLength)!=NULL) {
H A Dunistr.cpp1166 int32_t oldLength,
1176 oldText.pinIndices(oldStart, oldLength);
1179 if(oldLength == 0) {
1183 while(length > 0 && length >= oldLength) {
1184 int32_t pos = indexOf(oldText, oldStart, oldLength, start, length);
1190 replace(pos, oldLength, newText, newStart, newLength);
1191 length -= pos + oldLength - start;
1422 int32_t oldLength = this->length(); local
1431 setLength(oldLength - length);
1435 if(length >= (oldLength
1162 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
1545 int32_t oldLength = length(); local
1660 int32_t oldLength = length(); local
1682 int32_t oldLength = length(); local
1791 int32_t oldLength = length(); local
1896 int32_t oldLength = str.length(); local
[all...]
H A Dutext.cpp1891 int32_t oldLength; local
1900 oldLength=rep->length(); // will subtract from new length
1906 int32_t start32 = pinIndex(start, oldLength);
1907 int32_t limit32 = pinIndex(limit, oldLength);
1910 if (start32<oldLength && U16_IS_TRAIL(rep->charAt(start32)) &&
1915 if (limit32<oldLength && U16_IS_LEAD(rep->charAt(limit32-1)) &&
1925 int32_t lengthDelta = newLength - oldLength;
2167 int32_t oldLength; local
2179 oldLength=us->length();
2180 int32_t start32 = pinIndex(start, oldLength);
[all...]
/external/skia/tests/
H A DPointTest.cpp29 SkScalar oldLength = point.length(); local
32 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(returned, oldLength));
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtcp_receiver_help.cc58 uint16_t oldLength = applicationLength; local
71 memcpy(applicationData, oldData, oldLength);
72 memcpy(applicationData+oldLength, data, copySize);
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DEdits.java101 public void addReplace(int oldLength, int newLength) { argument
102 if(oldLength == newLength && 0 < oldLength && oldLength <= MAX_SHORT_WIDTH) {
103 // Replacement of short oldLength text units by same-length new text.
107 (last >> 12) == oldLength && (last & 0xfff) < MAX_SHORT_CHANGE_LENGTH) {
111 append(oldLength << 12);
115 if(oldLength < 0 || newLength < 0) {
117 "addReplace(" + oldLength + ", " + newLength +
120 if (oldLength
413 public int oldLength() { return oldLength_; } method in class:Edits.Iterator
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DEdits.java104 public void addReplace(int oldLength, int newLength) { argument
105 if(oldLength == newLength && 0 < oldLength && oldLength <= MAX_SHORT_WIDTH) {
106 // Replacement of short oldLength text units by same-length new text.
110 (last >> 12) == oldLength && (last & 0xfff) < MAX_SHORT_CHANGE_LENGTH) {
114 append(oldLength << 12);
118 if(oldLength < 0 || newLength < 0) {
120 "addReplace(" + oldLength + ", " + newLength +
123 if (oldLength
423 public int oldLength() { return oldLength_; } method in class:Edits.Iterator
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
H A DUCharacterCaseTest.java716 private int oldLength, newLength; field in class:UCharacterCaseTest.EditChange
717 EditChange(boolean change, int oldLength, int newLength) { argument
719 this.oldLength = oldLength;
738 assertEquals(msg, expect.oldLength, ei1.oldLength());
745 if (expect.oldLength > 0) {
748 assertEquals(msg, expect.oldLength, ei2.oldLength());
761 expSrcIndex += expect.oldLength;
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dalphaindextst.cpp34 int32_t oldLength = dest.length(); local
37 if (dest.length() > oldLength) {
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUCharacterCaseTest.java715 private int oldLength, newLength; field in class:UCharacterCaseTest.EditChange
716 EditChange(boolean change, int oldLength, int newLength) { argument
718 this.oldLength = oldLength;
737 assertEquals(msg, expect.oldLength, ei1.oldLength());
744 if (expect.oldLength > 0) {
747 assertEquals(msg, expect.oldLength, ei2.oldLength());
760 expSrcIndex += expect.oldLength;
[all...]
/external/icu/icu4c/source/tools/makeconv/
H A Dgenmbcs.cpp1078 uint32_t i, value, oldLength, old3Top; local
1081 oldLength=mbcsData->ucm->states.maxCharLength;
1082 if(oldLength<3) {
1094 if(oldLength==4) {
1099 for(i=0; i<old3Top; i+=oldLength) {
1110 mbcsData->ucm->states.outputType=(int8_t)(MBCS_OUTPUT_3_EUC+oldLength-3);
1111 mbcsData->stage3Top=(old3Top*(oldLength-1))/oldLength;
1120 if(oldLength==3) {
1122 for(i=0; i<old3Top; i+=oldLength) {
[all...]
/external/proguard/src/proguard/classfile/editor/
H A DCodeAttributeEditor.java599 int oldLength = codeAttribute.u4codeLength;
602 if (newInstructionOffsets.length < oldLength + 1)
604 newInstructionOffsets = new int[oldLength + 1];
609 oldLength);
625 oldLength);
635 * @param oldLength the code length.
638 private int mapInstructions(byte[] oldCode, int oldLength) argument
660 while (oldOffset < oldLength);
715 * @param oldLength the original code length.
721 int oldLength)
717 moveInstructions(Clazz clazz, Method method, CodeAttribute codeAttribute, byte[] oldCode, int oldLength) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.team.core_3.5.100.R36x_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.jdt.core_3.11.0.v20150602-1242.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
H A Dorg.eclipse.core.resources_3.10.0.v20150423-0755.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/dagger2/lib/
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...
/external/robolectric/v1/lib/main/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...
/external/guice/extensions/struts2/lib/
H A Dcore-3.1.1.jarMETA-INF/ org/ org/eclipse/ org/eclipse/jdt/ org/eclipse/jdt/core/ org/eclipse/jdt/core/compiler/ org/ ...

Completed in 3538 milliseconds

12