/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | StringReplacer.java | 154 int destStart = tempStart; // copy new text to here in replace() local 158 destStart += len; in replace() 161 destStart++; in replace() 163 int destLimit = destStart; in replace() 169 newStart = buf.length() + destLimit - destStart; // relative to start in replace() 215 newStart = destLimit - destStart; // relative to start in replace() 218 outLen = destLimit - destStart; in replace() 221 text.copy(destStart, destLimit, start); in replace()
|
D | Normalizer.java | 745 char[] dest,int destStart, int destLimit, in compose() argument 748 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in compose() 829 char[] dest,int destStart, int destLimit, in decompose() argument 832 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in decompose() 919 char[] dest,int destStart, int destLimit, in normalize() argument 922 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in normalize() 1346 char[] dest, int destStart, int destLimit, in concatenate() argument 1353 if (right == dest && rightStart < destLimit && destStart < rightLimit) { in concatenate() 1363 if(destLength<=(destLimit-destStart)) { in concatenate() 1364 destBuilder.getChars(0, destLength, dest, destStart); in concatenate() [all …]
|
D | ArabicShaping.java | 87 char[] dest, int destStart, int destSize) throws ArabicShapingException { in shape() argument 100 (destStart < 0 || destSize < 0 || destStart + destSize > dest.length)) { in shape() 101 throw new IllegalArgumentException("bad dest start (" + destStart + in shape() 130 return internalShape(source, sourceStart, sourceLength, dest, destStart, destSize); in shape() 1791 int destStart, in internalShape() argument 1909 System.arraycopy(temp, 0, dest, destStart, outputSize); in internalShape()
|
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
D | StringReplacer.java | 153 int destStart = tempStart; // copy new text to here in replace() local 157 destStart += len; in replace() 160 destStart++; in replace() 162 int destLimit = destStart; in replace() 168 newStart = buf.length() + destLimit - destStart; // relative to start in replace() 214 newStart = destLimit - destStart; // relative to start in replace() 217 outLen = destLimit - destStart; in replace() 220 text.copy(destStart, destLimit, start); in replace()
|
/external/icu/icu4c/source/i18n/ |
D | strrepl.cpp | 144 int32_t destStart = tempStart; // copy new text to here in replace() local 148 destStart += len; in replace() 152 destStart++; in replace() 154 int32_t destLimit = destStart; in replace() 159 newStart = destLimit - destStart; // relative to start in replace() 189 newStart = destLimit - destStart; // relative to start in replace() 192 outLen = destLimit - destStart; in replace() 195 text.copy(destStart, destLimit, start); in replace()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | Normalizer.java | 728 char[] dest,int destStart, int destLimit, in compose() argument 731 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in compose() 808 char[] dest,int destStart, int destLimit, in decompose() argument 811 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in decompose() 894 char[] dest,int destStart, int destLimit, in normalize() argument 897 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in normalize() 1316 char[] dest, int destStart, int destLimit, in concatenate() argument 1323 if (right == dest && rightStart < destLimit && destStart < rightLimit) { in concatenate() 1333 if(destLength<=(destLimit-destStart)) { in concatenate() 1334 destBuilder.getChars(0, destLength, dest, destStart); in concatenate() [all …]
|
D | ArabicShaping.java | 87 char[] dest, int destStart, int destSize) throws ArabicShapingException { in shape() argument 100 (destStart < 0 || destSize < 0 || destStart + destSize > dest.length)) { in shape() 101 throw new IllegalArgumentException("bad dest start (" + destStart + in shape() 130 return internalShape(source, sourceStart, sourceLength, dest, destStart, destSize); in shape() 1839 int destStart, in internalShape() argument 1957 System.arraycopy(temp, 0, dest, destStart, outputSize); in internalShape()
|
/external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
D | StringBuilder.java | 251 public void getChars (int start, int end, char[] dest, int destStart) { in getChars() argument 255 System.arraycopy(chars, start, dest, destStart, end - start); in getChars()
|