Home
last modified time | relevance | path

Searched refs:destLimit (Results 1 - 20 of 20) sorted by relevance

/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DStringReplacer.java147 // to destLimit + tempExtra. The start of the buffer has a single in replace()
165 int destLimit = destStart; in replace()
166 int tempExtra = 0; // temp chars after destLimit in replace()
171 newStart = buf.length() + destLimit - destStart; // relative to start in replace()
187 text.copy(limit, limit+tempExtra, destLimit); in replace()
199 text.replace(destLimit, destLimit, buf.toString()); in replace()
200 destLimit += buf.length(); in replace()
205 int len = r.replace(text, destLimit, destLimit, curso in replace()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DStringReplacer.java148 // to destLimit + tempExtra. The start of the buffer has a single in replace()
166 int destLimit = destStart; in replace()
167 int tempExtra = 0; // temp chars after destLimit in replace()
172 newStart = buf.length() + destLimit - destStart; // relative to start in replace()
188 text.copy(limit, limit+tempExtra, destLimit); in replace()
200 text.replace(destLimit, destLimit, buf.toString()); in replace()
201 destLimit += buf.length(); in replace()
206 int len = r.replace(text, destLimit, destLimit, curso in replace()
[all...]
H A DNormalizer.java740 * @param destLimit End index of the destination buffer
754 char[] dest,int destStart, int destLimit, in compose()
757 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in compose()
824 * @param destLimit End index of the destination buffer
838 char[] dest,int destStart, int destLimit, in decompose()
841 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in decompose()
914 * @param destLimit End 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==destLimit
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...]
/third_party/icu/icu4c/source/i18n/
H A Dstrrepl.cpp137 // to destLimit. The start of the buffer has a single in replace()
156 int32_t destLimit = destStart; in replace() local
161 newStart = destLimit - destStart; // relative to start in replace()
173 text.handleReplaceBetween(destLimit, destLimit, buf); in replace()
174 destLimit += buf.length(); in replace()
179 int32_t len = r->replace(text, destLimit, destLimit, cursor); in replace()
180 destLimit += len; in replace()
186 text.handleReplaceBetween(destLimit, destLimi in replace()
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dstrrepl.cpp137 // to destLimit. The start of the buffer has a single in replace()
156 int32_t destLimit = destStart; in replace() local
161 newStart = destLimit - destStart; // relative to start in replace()
173 text.handleReplaceBetween(destLimit, destLimit, buf); in replace()
174 destLimit += buf.length(); in replace()
179 int32_t len = r->replace(text, destLimit, destLimit, cursor); in replace()
180 destLimit += len; in replace()
186 text.handleReplaceBetween(destLimit, destLimi in replace()
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dstrrepl.cpp137 // to destLimit. The start of the buffer has a single in replace()
156 int32_t destLimit = destStart; in replace() local
161 newStart = destLimit - destStart; // relative to start in replace()
173 text.handleReplaceBetween(destLimit, destLimit, buf); in replace()
174 destLimit += buf.length(); in replace()
179 int32_t len = r->replace(text, destLimit, destLimit, cursor); in replace()
180 destLimit += len; in replace()
186 text.handleReplaceBetween(destLimit, destLimi in replace()
[all...]
/third_party/icu/icu4c/source/common/
H A Dunistr_cnv.cpp264 const char *destLimit; in doExtract() local
267 destLimit=dest=0; in doExtract()
270 destLimit=(char*)U_MAX_PTR(dest); in doExtract()
274 destLimit=dest+destCapacity; in doExtract()
278 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, true, &errorCode); in doExtract()
285 destLimit=buffer+sizeof(buffer); in doExtract()
289 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, true, &errorCode); in doExtract()
H A Dustrtrns.cpp49 UChar *destLimit; in u_strFromUTF32WithSub() local
71 destLimit = (dest!=NULL)?(dest + destCapacity):NULL; in u_strFromUTF32WithSub()
80 if(pDest < destLimit) { in u_strFromUTF32WithSub()
101 if(pDest < destLimit) { in u_strFromUTF32WithSub()
108 if(pDest!=NULL && ((pDest + 2) <= destLimit)) { in u_strFromUTF32WithSub()
164 UChar32 *destLimit; in u_strToUTF32WithSub() local
186 destLimit = (dest!=NULL)?(dest + destCapacity):NULL; in u_strToUTF32WithSub()
194 if(pDest < destLimit) { in u_strToUTF32WithSub()
224 if(pDest < destLimit) { in u_strToUTF32WithSub()
H A Ducnv.cpp1729 char *originalDest, *destLimit; in ucnv_fromUChars() local
1754 destLimit=dest+destCapacity; in ucnv_fromUChars()
1757 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, true, pErrorCode); in ucnv_fromUChars()
1764 destLimit=buffer+sizeof(buffer); in ucnv_fromUChars()
1768 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, true, pErrorCode); in ucnv_fromUChars()
1785 UChar *originalDest, *destLimit; in ucnv_toUChars() local
1810 destLimit=dest+destCapacity; in ucnv_toUChars()
1813 ucnv_toUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, true, pErrorCode); in ucnv_toUChars()
1821 destLimit=buffer+UPRV_LENGTHOF(buffer); in ucnv_toUChars()
1825 ucnv_toUnicode(cnv, &dest, destLimit, in ucnv_toUChars()
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dunistr_cnv.cpp264 const char *destLimit; in doExtract() local
267 destLimit=dest=0; in doExtract()
270 destLimit=(char*)U_MAX_PTR(dest); in doExtract()
274 destLimit=dest+destCapacity; in doExtract()
278 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, true, &errorCode); in doExtract()
285 destLimit=buffer+sizeof(buffer); in doExtract()
289 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, true, &errorCode); in doExtract()
H A Dustrtrns.cpp49 char16_t *destLimit; in u_strFromUTF32WithSub() local
71 destLimit = (dest!=nullptr)?(dest + destCapacity):nullptr; in u_strFromUTF32WithSub()
80 if(pDest < destLimit) { in u_strFromUTF32WithSub()
101 if(pDest < destLimit) { in u_strFromUTF32WithSub()
108 if(pDest!=nullptr && ((pDest + 2) <= destLimit)) { in u_strFromUTF32WithSub()
164 UChar32 *destLimit; in u_strToUTF32WithSub() local
186 destLimit = (dest!=nullptr)?(dest + destCapacity):nullptr; in u_strToUTF32WithSub()
194 if(pDest < destLimit) { in u_strToUTF32WithSub()
224 if(pDest < destLimit) { in u_strToUTF32WithSub()
H A Ducnv.cpp1729 char *originalDest, *destLimit; in ucnv_fromUChars() local
1754 destLimit=dest+destCapacity; in ucnv_fromUChars()
1757 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, true, pErrorCode); in ucnv_fromUChars()
1764 destLimit=buffer+sizeof(buffer); in ucnv_fromUChars()
1768 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, true, pErrorCode); in ucnv_fromUChars()
1785 char16_t *originalDest, *destLimit; in ucnv_toUChars() local
1810 destLimit=dest+destCapacity; in ucnv_toUChars()
1813 ucnv_toUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, true, pErrorCode); in ucnv_toUChars()
1821 destLimit=buffer+UPRV_LENGTHOF(buffer); in ucnv_toUChars()
1825 ucnv_toUnicode(cnv, &dest, destLimit, in ucnv_toUChars()
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dunistr_cnv.cpp264 const char *destLimit; in doExtract() local
267 destLimit=dest=0; in doExtract()
270 destLimit=(char*)U_MAX_PTR(dest); in doExtract()
274 destLimit=dest+destCapacity; in doExtract()
278 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, TRUE, &errorCode); in doExtract()
285 destLimit=buffer+sizeof(buffer); in doExtract()
289 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, TRUE, &errorCode); in doExtract()
H A Dustrtrns.cpp49 UChar *destLimit; in u_strFromUTF32WithSub() local
71 destLimit = (dest!=NULL)?(dest + destCapacity):NULL; in u_strFromUTF32WithSub()
80 if(pDest < destLimit) { in u_strFromUTF32WithSub()
101 if(pDest < destLimit) { in u_strFromUTF32WithSub()
108 if(pDest!=NULL && ((pDest + 2) <= destLimit)) { in u_strFromUTF32WithSub()
164 UChar32 *destLimit; in u_strToUTF32WithSub() local
186 destLimit = (dest!=NULL)?(dest + destCapacity):NULL; in u_strToUTF32WithSub()
194 if(pDest < destLimit) { in u_strToUTF32WithSub()
224 if(pDest < destLimit) { in u_strToUTF32WithSub()
H A Ducnv.cpp1722 char *originalDest, *destLimit; in ucnv_fromUChars() local
1747 destLimit=dest+destCapacity; in ucnv_fromUChars()
1750 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, TRUE, pErrorCode); in ucnv_fromUChars()
1757 destLimit=buffer+sizeof(buffer); in ucnv_fromUChars()
1761 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, TRUE, pErrorCode); in ucnv_fromUChars()
1778 UChar *originalDest, *destLimit; in ucnv_toUChars() local
1803 destLimit=dest+destCapacity; in ucnv_toUChars()
1806 ucnv_toUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, TRUE, pErrorCode); in ucnv_toUChars()
1814 destLimit=buffer+UPRV_LENGTHOF(buffer); in ucnv_toUChars()
1818 ucnv_toUnicode(cnv, &dest, destLimit, in ucnv_toUChars()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DNormalizer.java723 * @param destLimit End index of the destination buffer
736 char[] dest,int destStart, int destLimit, in compose()
739 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in compose()
803 * @param destLimit End index of the destination buffer
816 char[] dest,int destStart, int destLimit, in decompose()
819 CharsAppendable app = new CharsAppendable(dest, destStart, destLimit); in decompose()
889 * @param destLimit End 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==destLimit
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...]
/third_party/icu/icu4c/source/test/cintltst/
H A Ducsdetst.c57 char *dest, *destLimit = buffer + sizeof(buffer); in preflight() local
64 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, true, &status); in preflight()
78 char *dest = bytes, *destLimit = bytes + byteCount + 1; in extractBytes() local
80 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, true, &status); in extractBytes()
/third_party/skia/third_party/externals/expat/expat/lib/
H A Dxmlparse.c7534 XML_Content *const destLimit = &ret[dtd->scaffCount]; in build_model() local
7542 for (; dest < destLimit; dest++) { in build_model()
/third_party/python/Modules/expat/
H A Dxmlparse.c7567 XML_Content *const destLimit = &ret[dtd->scaffCount]; in build_model() local
7574 for (; dest < destLimit; dest++) { in build_model()
/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 44 milliseconds