Home
last modified time | relevance | path

Searched refs:destStart (Results 1 - 14 of 14) sorted by relevance

/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DStringReplacer.java153 // destStart points to the point after the style context in replace()
156 int destStart = tempStart; // copy new text to here in replace()
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()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DStringReplacer.java154 // destStart points to the point after the style context in replace()
157 int destStart = tempStart; // copy new text to here in replace()
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()
H A DNormalizer.java739 * @param destStart Start index of the destination buffer
754 char[] dest,int destStart, int destLimit, in compose()
757 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in compose()
823 * @param destStart Start index of the destination buffer
838 char[] dest,int destStart, int destLimit, in decompose()
841 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in decompose()
913 * @param destStart Start index of the destination buffer
928 char[] dest,int destStart, int destLimit, in normalize()
931 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in normalize()
1334 * @param dest The output buffer; can be null if destStart
753 compose(char[] src,int srcStart, int srcLimit, char[] dest,int destStart, int destLimit, boolean compat, int options) compose() argument
837 decompose(char[] src,int srcStart, int srcLimit, char[] dest,int destStart, int destLimit, boolean compat, int options) decompose() argument
927 normalize(char[] src,int srcStart, int srcLimit, char[] dest,int destStart, int destLimit, Mode mode, int options) normalize() argument
1353 concatenate(char[] left, int leftStart, int leftLimit, char[] right, int rightStart, int rightLimit, char[] dest, int destStart, int destLimit, Normalizer.Mode mode, int options) concatenate() argument
2573 CharsAppendable(char[] dest, int destStart, int destLimit) CharsAppendable() argument
[all...]
H A DArabicShaping.java74 * @param destStart The start of the range of the destination buffer to use.
89 char[] dest, int destStart, int destSize) throws ArabicShapingException { in shape()
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()
1914 System.arraycopy(temp, 0, dest, destStart, outputSize); in internalShape()
88 shape(char[] source, int sourceStart, int sourceLength, char[] dest, int destStart, int destSize) shape() argument
1792 internalShape(char[] source, int sourceStart, int sourceLength, char[] dest, int destStart, int destSize) internalShape() argument
/third_party/icu/icu4c/source/i18n/
H A Dstrrepl.cpp143 // destStart points to the point after the style context in replace()
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()
/third_party/node/deps/icu-small/source/i18n/
H A Dstrrepl.cpp143 // destStart points to the point after the style context in replace()
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()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dstrrepl.cpp143 // destStart points to the point after the style context in replace()
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()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DNormalizer.java722 * @param destStart Start index of the destination buffer
736 char[] dest,int destStart, int destLimit, in compose()
739 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in compose()
802 * @param destStart Start index of the destination buffer
816 char[] dest,int destStart, int destLimit, in decompose()
819 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in decompose()
888 * @param destStart Start index of the destination buffer
902 char[] dest,int destStart, int destLimit, in normalize()
905 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in normalize()
1304 * @param dest The output buffer; can be null if destStart
735 compose(char[] src,int srcStart, int srcLimit, char[] dest,int destStart, int destLimit, boolean compat, int options) compose() argument
815 decompose(char[] src,int srcStart, int srcLimit, char[] dest,int destStart, int destLimit, boolean compat, int options) decompose() argument
901 normalize(char[] src,int srcStart, int srcLimit, char[] dest,int destStart, int destLimit, Mode mode, int options) normalize() argument
1322 concatenate(char[] left, int leftStart, int leftLimit, char[] right, int rightStart, int rightLimit, char[] dest, int destStart, int destLimit, Normalizer.Mode mode, int options) concatenate() argument
2513 CharsAppendable(char[] dest, int destStart, int destLimit) CharsAppendable() argument
[all...]
H A DArabicShaping.java73 * @param destStart The start of the range of the destination buffer to use.
89 char[] dest, int destStart, int destSize) throws ArabicShapingException { in shape()
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()
1962 System.arraycopy(temp, 0, dest, destStart, outputSize); in internalShape()
88 shape(char[] source, int sourceStart, int sourceLength, char[] dest, int destStart, int destSize) shape() argument
1840 internalShape(char[] source, int sourceStart, int sourceLength, char[] dest, int destStart, int destSize) internalShape() argument
/third_party/skia/third_party/externals/swiftshader/src/Device/
H A DETC_Decoder.cpp436 unsigned char *destStart = dest; in decodeIndividualOrDifferentialBlock() local
475 decodePunchThroughAlphaBlock(destStart, x, y, w, h, pitch); in decodeIndividualOrDifferentialBlock()
501 unsigned char *destStart = dest; in decodeTBlock() local
515 decodePunchThroughAlphaBlock(destStart, x, y, w, h, pitch); in decodeTBlock()
541 unsigned char *destStart = dest; in decodeHBlock() local
555 decodePunchThroughAlphaBlock(destStart, x, y, w, h, pitch); in decodeHBlock()
/third_party/skia/third_party/externals/swiftshader/src/Renderer/
H A DETC_Decoder.cpp439 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()
/third_party/lzma/CPP/Common/
H A DUTFConvert.cpp710 char *destStart = dest.GetBuf((unsigned)destLen); in ConvertUnicodeToUTF8_Flags() local
711 const char *destEnd = Utf16_To_Utf8(destStart, src, src.Ptr(src.Len()), flags); in ConvertUnicodeToUTF8_Flags()
714 if (destLen != (size_t)(destEnd - destStart)) in ConvertUnicodeToUTF8_Flags()
717 // dest.ReleaseBuf_SetEnd((unsigned)(destEnd - destStart)); in ConvertUnicodeToUTF8_Flags()
719 printf("\n(destEnd - destStart) = %d\n", (unsigned)(destEnd - destStart)); in ConvertUnicodeToUTF8_Flags()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/common/
H A DImage.cpp952 unsigned char *destStart = static_cast<unsigned char*>(buffer) + (z * rect.destSlice); in Transfer() local
956 unsigned char *dest = destStart + y * rect.destPitch; in Transfer()
/third_party/skia/third_party/externals/sfntly/java/lib/
H A Dicu4j-4_8_1_1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ibm/ com/ibm/icu/ com/ibm/icu/impl/ ...

Completed in 24 milliseconds