Searched defs:srcChars (Results 1 - 4 of 4) sorted by relevance

/external/icu4c/common/
H A Dunistr_case.cpp40 const UChar *srcChars,
46 // treat const UChar *srcChars==NULL as an empty string
54 if(srcChars == NULL) {
62 srcChars += srcStart;
64 if(chars != srcChars) {
66 int32_t result=u_strcmpFold(chars, length, srcChars, srcLength,
74 srcLength = u_strlen(srcChars + srcStart);
38 doCaseCompare(int32_t start, int32_t length, const UChar *srcChars, int32_t srcStart, int32_t srcLength, uint32_t options) const argument
H A Dunistr.cpp573 const UChar *srcChars,
578 // treat const UChar *srcChars==NULL as an empty string
586 if(srcChars == NULL) {
594 srcChars += srcStart;
601 srcLength = u_strlen(srcChars + srcStart);
626 if(minLength > 0 && chars != srcChars) {
631 result = uprv_memcmp(chars, srcChars, minLength * sizeof(UChar));
638 result = ((int32_t)*(chars++) - (int32_t)*(srcChars++));
652 const UChar *srcChars,
657 // treat const UChar *srcChars
571 doCompare( int32_t start, int32_t length, const UChar *srcChars, int32_t srcStart, int32_t srcLength) const argument
650 doCompareCodePointOrder(int32_t start, int32_t length, const UChar *srcChars, int32_t srcStart, int32_t srcLength) const argument
894 indexOf(const UChar *srcChars, int32_t srcStart, int32_t srcLength, int32_t start, int32_t length) const argument
958 lastIndexOf(const UChar *srcChars, int32_t srcStart, int32_t srcLength, int32_t start, int32_t length) const argument
1224 doReplace(int32_t start, int32_t length, const UChar *srcChars, int32_t srcStart, int32_t srcLength) argument
[all...]
/external/icu4c/common/unicode/
H A Dunistr.h324 * <TT>srcLength</TT> characters in <TT>srcChars</TT>.
325 * @param srcChars The characters to compare to this UnicodeString.
326 * @param srcLength the number of characters in <TT>srcChars</TT> to compare
328 * contains the same characters as <code>srcChars</code>, -1 if the characters in
329 * this are bitwise less than the characters in <code>srcChars</code>, +1 if the
331 * in <code>srcChars</code>.
334 inline int8_t compare(const UChar *srcChars,
340 * <TT>length</TT> characters in <TT>srcChars</TT>
343 * @param srcChars the characters to be compared
345 * contains the same characters as <code>srcChars</cod
3612 compare(const UChar *srcChars, int32_t srcLength) const argument
3631 compare(int32_t start, int32_t _length, const UChar *srcChars, int32_t srcStart, int32_t srcLength) const argument
3673 compareCodePointOrder(const UChar *srcChars, int32_t srcLength) const argument
3692 compareCodePointOrder(int32_t start, int32_t _length, const UChar *srcChars, int32_t srcStart, int32_t srcLength) const argument
3738 caseCompare(const UChar *srcChars, int32_t srcLength, uint32_t options) const argument
3755 caseCompare(int32_t start, int32_t _length, const UChar *srcChars, uint32_t options) const argument
3763 caseCompare(int32_t start, int32_t _length, const UChar *srcChars, int32_t srcStart, int32_t srcLength, uint32_t options) const argument
3816 indexOf(const UChar *srcChars, int32_t srcLength, int32_t start) const argument
3824 indexOf(const UChar *srcChars, int32_t srcLength, int32_t start, int32_t _length) const argument
3865 lastIndexOf(const UChar *srcChars, int32_t srcLength, int32_t start, int32_t _length) const argument
3872 lastIndexOf(const UChar *srcChars, int32_t srcLength, int32_t start) const argument
3959 startsWith(const UChar *srcChars, int32_t srcLength) const argument
3967 startsWith(const UChar *srcChars, int32_t srcStart, int32_t srcLength) const argument
3989 endsWith(const UChar *srcChars, int32_t srcLength) const argument
3999 endsWith(const UChar *srcChars, int32_t srcStart, int32_t srcLength) const argument
4027 replace(int32_t start, int32_t _length, const UChar *srcChars, int32_t srcLength) argument
4034 replace(int32_t start, int32_t _length, const UChar *srcChars, int32_t srcStart, int32_t srcLength) argument
4300 setTo(const UChar *srcChars, int32_t srcLength) argument
4332 append(const UChar *srcChars, int32_t srcStart, int32_t srcLength) argument
4338 append(const UChar *srcChars, int32_t srcLength) argument
4382 insert(int32_t start, const UChar *srcChars, int32_t srcStart, int32_t srcLength) argument
4389 insert(int32_t start, const UChar *srcChars, int32_t srcLength) argument
[all...]
/external/icu4c/test/cintltst/
H A Dcbiditst.c89 const char *srcChars, const char *destChars,
92 static UBool checkResultLength(UBiDi *pBiDi, const char *srcChars,
503 static UBool checkWhatYouCan(UBiDi *bidi, const char *srcChars, const char *dstChars) argument
504 /* srcChars and dstChars are char arrays encoded as pseudo Bidi */
538 accumDst[idx] = srcChars[i];
539 if (!matchingPair(bidi, i, srcChars[i], dstChars[idx])) {
550 printCaseInfo(bidi, srcChars, dstChars);
567 printCaseInfo(bidi, srcChars, dstChars);
587 if (!matchingPair(bidi, idx, srcChars[idx], dstChars[i])) {
598 printCaseInfo(bidi, srcChars, dstChar
3267 assertRoundTrip(UBiDi *pBiDi, int32_t tc, int32_t outIndex, const char *srcChars, const char *destChars, const UChar *dest, int32_t destLen, int mode, int option, UBiDiLevel level) argument
3444 checkResultLength(UBiDi *pBiDi, const char *srcChars, const char *destChars, int32_t destLen, const char* mode, const char* option, UBiDiLevel level) argument
3614 const char *srcChars = textIn[tc]; local
3700 inverseBasic(UBiDi *pBiDi, const char *srcChars, int32_t srcLen, uint32_t option, UBiDiLevel level, char *result) argument
[all...]

Completed in 650 milliseconds