• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/ICU-531.30/icuSources/common/

Lines Matching refs:srcChars

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 string
669 if(srcChars == NULL) {
673 int32_t diff = uprv_strCompare(getArrayStart() + start, length, (srcChars!=NULL)?(srcChars + srcStart):NULL, srcLength, FALSE, TRUE);
935 UnicodeString::indexOf(const UChar *srcChars,
941 if(isBogus() || srcChars == 0 || srcStart < 0 || srcLength == 0) {
946 if(srcLength < 0 && srcChars[srcStart] == 0) {
955 const UChar *match = u_strFindFirst(array + start, length, srcChars + srcStart, srcLength);
999 UnicodeString::lastIndexOf(const UChar *srcChars,
1005 if(isBogus() || srcChars == 0 || srcStart < 0 || srcLength == 0) {
1010 if(srcLength < 0 && srcChars[srcStart] == 0) {
1019 const UChar *match = u_strFindLast(array + start, length, srcChars + srcStart, srcLength);
1330 const UChar *srcChars,
1360 if(srcChars == 0) {
1364 srcLength = u_strlen(srcChars + srcStart);
1385 if(srcChars + srcStart != oldArray + start || start > oldLength) {
1386 us_arrayCopy(srcChars, srcStart, oldArray, oldLength, srcLength);
1440 us_arrayCopy(srcChars, srcStart, newArray, start, srcLength);
1444 // delayed delete in case srcChars == fArray when we started, and