HomeSort by relevance Sort by last modified time
    Searched refs:srcChars (Results 1 - 8 of 8) 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 581 const UChar *srcChars,
593 if(srcChars == NULL) {
594 // treat const UChar *srcChars==NULL as an empty string
602 srcChars += srcStart;
609 srcLength = u_strlen(srcChars + srcStart);
634 if(minLength > 0 && chars != srcChars) {
639 result = uprv_memcmp(chars, srcChars, minLength * sizeof(UChar));
646 result = ((int32_t)*(chars++) - (int32_t)*(srcChars++));
660 const UChar *srcChars,
665 // treat const UChar *srcChars==NULL as an empty strin
    [all...]
  /external/icu4c/common/unicode/
unistr.h 384 * <TT>srcLength</TT> characters in <TT>srcChars</TT>.
385 * @param srcChars The characters to compare to this UnicodeString.
386 * @param srcLength the number of characters in <TT>srcChars</TT> to compare
388 * contains the same characters as <code>srcChars</code>, -1 if the characters in
389 * this are bitwise less than the characters in <code>srcChars</code>, +1 if the
391 * in <code>srcChars</code>.
394 inline int8_t compare(const UChar *srcChars,
400 * <TT>length</TT> characters in <TT>srcChars</TT>
403 * @param srcChars the characters to be compared
405 * contains the same characters as <code>srcChars</code>, -1 if the characters i
    [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
unistr.h 323 * <TT>srcLength</TT> characters in <TT>srcChars</TT>.
324 * @param srcChars The characters to compare to this UnicodeString.
325 * @param srcLength the number of characters in <TT>srcChars</TT> to compare
327 * contains the same characters as <code>srcChars</code>, -1 if the characters in
328 * this are bitwise less than the characters in <code>srcChars</code>, +1 if the
330 * in <code>srcChars</code>.
333 inline int8_t compare(const UChar *srcChars,
339 * <TT>length</TT> characters in <TT>srcChars</TT>
342 * @param srcChars the characters to be compared
344 * contains the same characters as <code>srcChars</code>, -1 if the characters i
    [all...]
  /external/chromium_org/third_party/icu/source/common/
unistr_case.cpp 40 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);
unistr.cpp 572 const UChar *srcChars,
577 // treat const UChar *srcChars==NULL as an empty string
585 if(srcChars == NULL) {
593 srcChars += srcStart;
600 srcLength = u_strlen(srcChars + srcStart);
625 if(minLength > 0 && chars != srcChars) {
630 result = uprv_memcmp(chars, srcChars, minLength * sizeof(UChar));
637 result = ((int32_t)*(chars++) - (int32_t)*(srcChars++));
651 const UChar *srcChars,
656 // treat const UChar *srcChars==NULL as an empty strin
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cbiditst.c 85 const char *srcChars, const char *destChars,
88 static UBool checkResultLength(UBiDi *pBiDi, const char *srcChars,
496 static UBool checkWhatYouCan(UBiDi *bidi, const char *srcChars, const char *dstChars)
497 /* srcChars and dstChars are char arrays encoded as pseudo Bidi */
531 accumDst[idx] = srcChars[i];
532 if (!matchingPair(bidi, i, srcChars[i], dstChars[idx])) {
543 printCaseInfo(bidi, srcChars, dstChars);
560 printCaseInfo(bidi, srcChars, dstChars);
580 if (!matchingPair(bidi, idx, srcChars[idx], dstChars[i])) {
591 printCaseInfo(bidi, srcChars, dstChars)
    [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 136 milliseconds