Home
last modified time | relevance | path

Searched refs:destStart (Results 1 – 9 of 9) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/text/
DStringReplacer.java157 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()
DNormalizer.java753 char[] dest,int destStart, int destLimit, in compose() argument
756 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in compose()
837 char[] dest,int destStart, int destLimit, in decompose() argument
840 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in decompose()
927 char[] dest,int destStart, int destLimit, in normalize() argument
930 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in normalize()
1345 char[] dest, int destStart, int destLimit, in concatenate() argument
1352 if (right == dest && rightStart < destLimit && destStart < rightLimit) { in concatenate()
1362 if(destLength<=(destLimit-destStart)) { in concatenate()
1363 destBuilder.getChars(0, destLength, dest, destStart); in concatenate()
[all …]
DArabicShaping.java89 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()
1796 int destStart, in internalShape() argument
1914 System.arraycopy(temp, 0, dest, destStart, outputSize); in internalShape()
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
DStringReplacer.java156 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/
Dstrrepl.cpp146 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/
DNormalizer.java736 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 …]
DArabicShaping.java89 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/Renderer/
DETC_Decoder.cpp414 unsigned char* destStart = dest; in decodeIndividualOrDifferentialBlock() local
453 decodePunchThroughAlphaBlock(destStart, x, y, w, h, pitch); in decodeIndividualOrDifferentialBlock()
479 unsigned char* destStart = dest; in decodeTBlock() local
493 decodePunchThroughAlphaBlock(destStart, x, y, w, h, pitch); in decodeTBlock()
519 unsigned char* destStart = dest; in decodeHBlock() local
533 decodePunchThroughAlphaBlock(destStart, x, y, w, h, pitch); in decodeHBlock()
/external/swiftshader/src/OpenGL/common/
DImage.cpp409 …unsigned char *destStart = static_cast<unsigned char*>(buffer) + ((zoffset + z) * destPitch * dest… in LoadImageData() local
413 unsigned char *dest = destStart + (y + yoffset) * destPitch; in LoadImageData()