HomeSort by relevance Sort by last modified time
    Searched refs:srcChars (Results 1 - 4 of 4) sorted by null

  /external/icu4c/common/
unistr_case.cpp 38 const UChar *srcChars,
44 // treat const UChar *srcChars==NULL as an empty string
52 if(srcChars == NULL) {
61 srcChars += srcStart;
64 if(chars != srcChars) {
66 int32_t result=u_strcmpFold(chars, length, srcChars, srcLength,
74 srcLength = u_strlen(srcChars + srcStart);
unistr.cpp 583 const UChar *srcChars,
595 if(srcChars == NULL) {
596 // treat const UChar *srcChars==NULL as an empty string
604 srcChars += srcStart;
611 srcLength = u_strlen(srcChars + srcStart);
636 if(minLength > 0 && chars != srcChars) {
641 result = uprv_memcmp(chars, srcChars, minLength * sizeof(UChar));
648 result = ((int32_t)*(chars++) - (int32_t)*(srcChars++));
662 const UChar *srcChars,
667 // treat const UChar *srcChars==NULL as an empty strin
    [all...]
  /external/icu4c/common/unicode/
unistr.h 382 * <TT>srcLength</TT> characters in <TT>srcChars</TT>.
383 * @param srcChars The characters to compare to this UnicodeString.
384 * @param srcLength the number of characters in <TT>srcChars</TT> to compare
386 * contains the same characters as <code>srcChars</code>, -1 if the characters in
387 * this are bitwise less than the characters in <code>srcChars</code>, +1 if the
389 * in <code>srcChars</code>.
392 inline int8_t compare(const UChar *srcChars,
398 * <TT>length</TT> characters in <TT>srcChars</TT>
401 * @param srcChars the characters to be compared
403 * contains the same characters as <code>srcChars</code>, -1 if the characters i
    [all...]
  /external/icu4c/test/cintltst/
cbiditst.c 95 const char *srcChars, const char *destChars,
98 static UBool checkResultLength(UBiDi *pBiDi, const char *srcChars,
512 static UBool checkWhatYouCan(UBiDi *bidi, const char *srcChars, const char *dstChars)
513 /* srcChars and dstChars are char arrays encoded as pseudo Bidi */
547 accumDst[idx] = srcChars[i];
548 if (!matchingPair(bidi, i, srcChars[i], dstChars[idx])) {
559 printCaseInfo(bidi, srcChars, dstChars);
576 printCaseInfo(bidi, srcChars, dstChars);
596 if (!matchingPair(bidi, idx, srcChars[idx], dstChars[i])) {
607 printCaseInfo(bidi, srcChars, dstChars)
    [all...]

Completed in 89 milliseconds