/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | StringReplacer.java | 157 int destStart = tempStart; // copy new text to here in replace() local 161 destStart += len; in replace() 164 destStart++; in replace() 166 int destLimit = destStart; in replace() 172 newStart = buf.length() + destLimit - destStart; // relative to start in replace() 218 newStart = destLimit - destStart; // relative to start in replace() 221 outLen = destLimit - destStart; in replace() 224 text.copy(destStart, destLimit, start); in replace()
|
D | Normalizer.java | 754 char[] dest,int destStart, int destLimit, in compose() argument 757 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in compose() 838 char[] dest,int destStart, int destLimit, in decompose() argument 841 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in decompose() 928 char[] dest,int destStart, int destLimit, in normalize() argument 931 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 | 89 char[] dest, int destStart, int destSize) throws ArabicShapingException { in shape() argument 102 (destStart < 0 || destSize < 0 || destStart + destSize > dest.length)) { in shape() 103 throw new IllegalArgumentException("bad dest start (" + destStart + in shape() 132 return internalShape(source, sourceStart, sourceLength, dest, destStart, destSize); in shape() 1802 int destStart, in internalShape() argument 1920 System.arraycopy(temp, 0, dest, destStart, outputSize); in internalShape()
|
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
D | StringReplacer.java | 156 int destStart = tempStart; // copy new text to here in replace() local 160 destStart += len; in replace() 163 destStart++; in replace() 165 int destLimit = destStart; in replace() 171 newStart = buf.length() + destLimit - destStart; // relative to start in replace() 217 newStart = destLimit - destStart; // relative to start in replace() 220 outLen = destLimit - destStart; in replace() 223 text.copy(destStart, destLimit, start); in replace()
|
/external/icu/icu4c/source/i18n/ |
D | strrepl.cpp | 146 int32_t destStart = tempStart; // copy new text to here in replace() local 150 destStart += len; in replace() 154 destStart++; in replace() 156 int32_t destLimit = destStart; in replace() 161 newStart = destLimit - destStart; // relative to start in replace() 191 newStart = destLimit - destStart; // relative to start in replace() 194 outLen = destLimit - destStart; in replace() 197 text.copy(destStart, destLimit, start); in replace()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | Normalizer.java | 736 char[] dest,int destStart, int destLimit, in compose() argument 739 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in compose() 816 char[] dest,int destStart, int destLimit, in decompose() argument 819 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in decompose() 902 char[] dest,int destStart, int destLimit, in normalize() argument 905 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in normalize() 1324 char[] dest, int destStart, int destLimit, in concatenate() argument 1331 if (right == dest && rightStart < destLimit && destStart < rightLimit) { in concatenate() 1341 if(destLength<=(destLimit-destStart)) { in concatenate() 1342 destBuilder.getChars(0, destLength, dest, destStart); in concatenate() [all …]
|
D | ArabicShaping.java | 89 char[] dest, int destStart, int destSize) throws ArabicShapingException { in shape() argument 102 (destStart < 0 || destSize < 0 || destStart + destSize > dest.length)) { in shape() 103 throw new IllegalArgumentException("bad dest start (" + destStart + in shape() 132 return internalShape(source, sourceStart, sourceLength, dest, destStart, destSize); in shape() 1844 int destStart, in internalShape() argument 1962 System.arraycopy(temp, 0, dest, destStart, outputSize); in internalShape()
|
/external/swiftshader/src/Device/ |
D | ETC_Decoder.cpp | 439 unsigned char* destStart = dest; in decodeIndividualOrDifferentialBlock() local 478 decodePunchThroughAlphaBlock(destStart, x, y, w, h, pitch); in decodeIndividualOrDifferentialBlock() 504 unsigned char* destStart = dest; in decodeTBlock() local 518 decodePunchThroughAlphaBlock(destStart, x, y, w, h, pitch); in decodeTBlock() 544 unsigned char* destStart = dest; in decodeHBlock() local 558 decodePunchThroughAlphaBlock(destStart, x, y, w, h, pitch); in decodeHBlock()
|
/external/swiftshader/src/Renderer/ |
D | ETC_Decoder.cpp | 439 unsigned char* destStart = dest; in decodeIndividualOrDifferentialBlock() local 478 decodePunchThroughAlphaBlock(destStart, x, y, w, h, pitch); in decodeIndividualOrDifferentialBlock() 504 unsigned char* destStart = dest; in decodeTBlock() local 518 decodePunchThroughAlphaBlock(destStart, x, y, w, h, pitch); in decodeTBlock() 544 unsigned char* destStart = dest; in decodeHBlock() local 558 decodePunchThroughAlphaBlock(destStart, x, y, w, h, pitch); in decodeHBlock()
|
/external/swiftshader/src/OpenGL/common/ |
D | Image.cpp | 1015 unsigned char *destStart = static_cast<unsigned char*>(buffer) + (z * rect.destSlice); in Transfer() local 1019 unsigned char *dest = destStart + y * rect.destPitch; in Transfer()
|