/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | ReplaceableString.java | 120 public void getChars(int srcStart, int srcLimit, char dst[], int dstStart) { in getChars() argument 121 if (srcStart != srcLimit) { in getChars() 122 buf.getChars(srcStart, srcLimit, dst, dstStart); in getChars()
|
D | Replaceable.java | 104 void getChars(int srcStart, int srcLimit, char dst[], int dstStart); in getChars() argument
|
D | Normalizer.java | 752 public static int compose(char[] src,int srcStart, int srcLimit, in compose() argument 755 CharBuffer srcBuffer = CharBuffer.wrap(src, srcStart, srcLimit - srcStart); in compose() 836 public static int decompose(char[] src,int srcStart, int srcLimit, in decompose() argument 839 CharBuffer srcBuffer = CharBuffer.wrap(src, srcStart, srcLimit - srcStart); in decompose() 926 public static int normalize(char[] src,int srcStart, int srcLimit, in normalize() argument 929 CharBuffer srcBuffer = CharBuffer.wrap(src, srcStart, srcLimit - srcStart); in normalize()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | ReplaceableString.java | 128 public void getChars(int srcStart, int srcLimit, char dst[], int dstStart) { in getChars() argument 129 if (srcStart != srcLimit) { in getChars() 130 buf.getChars(srcStart, srcLimit, dst, dstStart); in getChars()
|
D | Replaceable.java | 108 void getChars(int srcStart, int srcLimit, char dst[], int dstStart); in getChars() argument
|
D | Normalizer.java | 735 public static int compose(char[] src,int srcStart, int srcLimit, in compose() argument 738 CharBuffer srcBuffer = CharBuffer.wrap(src, srcStart, srcLimit - srcStart); in compose() 815 public static int decompose(char[] src,int srcStart, int srcLimit, in decompose() argument 818 CharBuffer srcBuffer = CharBuffer.wrap(src, srcStart, srcLimit - srcStart); in decompose() 901 public static int normalize(char[] src,int srcStart, int srcLimit, in normalize() argument 904 CharBuffer srcBuffer = CharBuffer.wrap(src, srcStart, srcLimit - srcStart); in normalize()
|
/external/icu/icu4c/source/common/ |
D | ustrtrns.cpp | 47 const UChar32 *srcLimit; in u_strFromUTF32WithSub() local 86 srcLimit = src; in u_strFromUTF32WithSub() 89 while(*++srcLimit != 0) {} in u_strFromUTF32WithSub() 92 srcLimit = (src!=NULL)?(src + srcLength):NULL; in u_strFromUTF32WithSub() 96 while(src < srcLimit) { in u_strFromUTF32WithSub() 161 const UChar *srcLimit; in u_strToUTF32WithSub() local 200 srcLimit = src; in u_strToUTF32WithSub() 203 while(*++srcLimit != 0) {} in u_strToUTF32WithSub() 206 srcLimit = (src!=NULL)?(src + srcLength):NULL; in u_strToUTF32WithSub() 210 while(src < srcLimit) { in u_strToUTF32WithSub() [all …]
|
D | unistr_cnv.cpp | 262 const UChar *src=getArrayStart()+start, *srcLimit=src+length; in doExtract() local 278 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, TRUE, &errorCode); in doExtract() 289 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, TRUE, &errorCode); in doExtract()
|
D | ucnv_ext.h | 355 const char **src, const char *srcLimit, 375 const UChar **src, const UChar *srcLimit,
|
D | ucnv_ext.cpp | 280 const char **src, const char *srcLimit, in ucnv_extInitialMatchToU() argument 291 *src, (int32_t)(srcLimit-*src), in ucnv_extInitialMatchToU() 751 const UChar **src, const UChar *srcLimit, in ucnv_extInitialMatchFromU() argument 762 *src, (int32_t)(srcLimit-*src), in ucnv_extInitialMatchFromU()
|
D | ucnv.c | 1721 const UChar *srcLimit; in ucnv_fromUChars() local 1745 srcLimit=src+srcLength; in ucnv_fromUChars() 1754 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, TRUE, pErrorCode); in ucnv_fromUChars() 1765 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, TRUE, pErrorCode); in ucnv_fromUChars() 1781 const char *srcLimit; in ucnv_toUChars() local 1805 srcLimit=src+srcLength; in ucnv_toUChars() 1814 ucnv_toUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, TRUE, pErrorCode); in ucnv_toUChars() 1826 ucnv_toUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, TRUE, pErrorCode); in ucnv_toUChars()
|
D | ucasemap.cpp | 264 int32_t srcStart, int32_t srcLimit, in _caseMap() argument 276 while(srcIndex<srcLimit) { in _caseMap() 278 U8_NEXT(src, srcIndex, srcLimit, c); in _caseMap()
|
D | ustrcase.cpp | 156 int32_t srcStart, int32_t srcLimit, in _caseMap() argument 168 while(srcIndex<srcLimit) { in _caseMap() 170 U16_NEXT(src, srcIndex, srcLimit, c); in _caseMap()
|
/external/icu/icu4c/source/test/cintltst/ |
D | ncnvfbts.c | 303 const char *srcLimit; in testConvertToUnicode() local 360 srcLimit = nct_min(realSourceEnd, src + gInBufferSize); in testConvertToUnicode() 377 (const char *)srcLimit, in testConvertToUnicode() 379 … (UBool)(srcLimit == realSourceEnd), /* flush if we're at the end of hte source data */ in testConvertToUnicode() 381 …} while ( (status == U_BUFFER_OVERFLOW_ERROR) || (srcLimit < realSourceEnd) ); /* while we just ne… in testConvertToUnicode()
|
D | ucsdetst.c | 57 const UChar *srcLimit = src + length; in preflight() local 63 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, TRUE, &status); in preflight() 75 const UChar *srcLimit = src + length; in extractBytes() local 79 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, TRUE, &status); in extractBytes()
|
D | nccbtst.c | 2833 const char *srcLimit; in testConvertToUnicode() local 2901 srcLimit = nct_min(realSourceEnd, src + gInBufferSize); in testConvertToUnicode() 2918 (const char *)srcLimit, in testConvertToUnicode() 2920 … (UBool)(srcLimit == realSourceEnd), /* flush if we're at the end of the source data */ in testConvertToUnicode() 2922 …} while ( (status == U_BUFFER_OVERFLOW_ERROR) || (U_SUCCESS(status) && (srcLimit < realSourceEnd))… in testConvertToUnicode() 3206 const char *srcLimit; in testConvertToUnicodeWithContext() local 3274 srcLimit = nct_min(realSourceEnd, src + gInBufferSize); in testConvertToUnicodeWithContext() 3291 (const char *)srcLimit, in testConvertToUnicodeWithContext() 3293 … (UBool)(srcLimit == realSourceEnd), /* flush if we're at the end of the source data */ in testConvertToUnicodeWithContext() 3295 …} while ( (status == U_BUFFER_OVERFLOW_ERROR) || (U_SUCCESS(status) && (srcLimit < realSourceEnd))… in testConvertToUnicodeWithContext()
|
D | ncnvtst.c | 1372 const char *srcLimit; in testConvertToU() local 1429 srcLimit = nct_min(realSourceEnd, src + gInBufferSize); in testConvertToU() 1441 … doFlush=(UBool)((gInBufferSize ==999 && gOutBufferSize==999)?(srcLimit == realSourceEnd) : FALSE); in testConvertToU() 1447 (const char *)srcLimit, in testConvertToU() 1457 …} while ( (status == U_BUFFER_OVERFLOW_ERROR) || (U_SUCCESS(status) && (srcLimit < realSourceEnd))… in testConvertToU()
|
D | ccapitst.c | 2148 const char *srcLimit, *finalSrcLimit, *targetLimit; in convertExStreaming() local 2178 srcLimit=src+chunkSize; in convertExStreaming() 2180 srcLimit=finalSrcLimit; in convertExStreaming() 2184 &src, srcLimit, in convertExStreaming()
|
D | nucnvtst.c | 527 const char *srcLimit; in testConvertToU() local 575 srcLimit = nct_min(realSourceEnd, src + gInBufferSize); in testConvertToU() 592 srcLimit, in testConvertToU() 594 … (UBool)(srcLimit == realSourceEnd), /* flush if we're at the end of hte source data */ in testConvertToU() 599 …} while ( (status == U_BUFFER_OVERFLOW_ERROR) || (U_SUCCESS(status) && (srcLimit < realSourceEnd))… in testConvertToU()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/ |
D | ReplaceableTest.java | 127 public void getChars(int srcStart, int srcLimit, char dst[], int dstStart) { in getChars() argument 128 chars.getChars(srcStart, srcLimit, dst, dstStart); in getChars()
|
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
D | ReplaceableTest.java | 126 public void getChars(int srcStart, int srcLimit, char dst[], int dstStart) { in getChars() argument 127 chars.getChars(srcStart, srcLimit, dst, dstStart); in getChars()
|
/external/icu/icu4c/source/common/unicode/ |
D | unistr.h | 507 int32_t srcLimit) const; 674 int32_t srcLimit) const; 853 int32_t srcLimit, 2471 int32_t srcLimit); 3924 int32_t srcLimit) const in compareBetween() argument 3926 srcText, srcStart, srcLimit - srcStart); } in compareBetween() 3985 int32_t srcLimit) const in compareCodePointOrderBetween() argument 3987 srcText, srcStart, srcLimit - srcStart); } in compareCodePointOrderBetween() 4058 int32_t srcLimit, in caseCompareBetween() argument 4060 return doCaseCompare(start, limit - start, srcText, srcStart, srcLimit - srcStart, options); in caseCompareBetween() [all …]
|