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

  /external/chromium_org/third_party/icu/source/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 577 const UChar *srcChars,
589 if(srcChars == NULL) {
590 // treat const UChar *srcChars==NULL as an empty string
598 srcChars += srcStart;
605 srcLength = u_strlen(srcChars + srcStart);
630 if(minLength > 0 && chars != srcChars) {
635 result = uprv_memcmp(chars, srcChars, minLength * sizeof(UChar));
642 result = ((int32_t)*(chars++) - (int32_t)*(srcChars++));
656 const UChar *srcChars,
661 // treat const UChar *srcChars==NULL as an empty strin
    [all...]
  /external/icu/icu4c/source/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 577 const UChar *srcChars,
589 if(srcChars == NULL) {
590 // treat const UChar *srcChars==NULL as an empty string
598 srcChars += srcStart;
605 srcLength = u_strlen(srcChars + srcStart);
630 if(minLength > 0 && chars != srcChars) {
635 result = uprv_memcmp(chars, srcChars, minLength * sizeof(UChar));
642 result = ((int32_t)*(chars++) - (int32_t)*(srcChars++));
656 const UChar *srcChars,
661 // treat const UChar *srcChars==NULL as an empty strin
    [all...]
  /external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/chromium_org/third_party/icu/source/test/cintltst/
cbiditst.c 97 const char *srcChars, const char *destChars,
100 static UBool checkResultLength(UBiDi *pBiDi, const char *srcChars,
515 static UBool checkWhatYouCan(UBiDi *bidi, const char *srcChars, const char *dstChars)
516 /* srcChars and dstChars are char arrays encoded as pseudo Bidi */
550 accumDst[idx] = srcChars[i];
551 if (!matchingPair(bidi, i, srcChars[i], dstChars[idx])) {
562 printCaseInfo(bidi, srcChars, dstChars);
579 printCaseInfo(bidi, srcChars, dstChars);
599 if (!matchingPair(bidi, idx, srcChars[idx], dstChars[i])) {
610 printCaseInfo(bidi, srcChars, dstChars)
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cbiditst.c 99 const char *srcChars, const char *destChars,
102 static UBool checkResultLength(UBiDi *pBiDi, const char *srcChars,
517 static UBool checkWhatYouCan(UBiDi *bidi, const char *srcChars, const char *dstChars)
518 /* srcChars and dstChars are char arrays encoded as pseudo Bidi */
552 accumDst[idx] = srcChars[i];
553 if (!matchingPair(bidi, i, srcChars[i], dstChars[idx])) {
564 printCaseInfo(bidi, srcChars, dstChars);
581 printCaseInfo(bidi, srcChars, dstChars);
601 if (!matchingPair(bidi, idx, srcChars[idx], dstChars[i])) {
612 printCaseInfo(bidi, srcChars, dstChars)
    [all...]

Completed in 113 milliseconds