Lines Matching refs:srcChars
392 inline int8_t compare(const UChar *srcChars,
411 const UChar *srcChars) const;
432 const UChar *srcChars,
546 inline int8_t compareCodePointOrder(const UChar *srcChars,
570 const UChar *srcChars) const;
595 const UChar *srcChars,
719 inline int8_t caseCompare(const UChar *srcChars,
745 const UChar *srcChars,
772 const UChar *srcChars,
837 inline UBool startsWith(const UChar *srcChars,
849 inline UBool startsWith(const UChar *srcChars,
884 inline UBool endsWith(const UChar *srcChars,
897 inline UBool endsWith(const UChar *srcChars,
974 inline int32_t indexOf(const UChar *srcChars,
990 inline int32_t indexOf(const UChar *srcChars,
1011 int32_t indexOf(const UChar *srcChars,
1157 inline int32_t lastIndexOf(const UChar *srcChars,
1173 inline int32_t lastIndexOf(const UChar *srcChars,
1194 int32_t lastIndexOf(const UChar *srcChars,
1910 inline UnicodeString& setTo(const UChar *srcChars,
2105 inline UnicodeString& append(const UChar *srcChars,
2118 inline UnicodeString& append(const UChar *srcChars,
2183 const UChar *srcChars,
2197 const UChar *srcChars,
2283 const UChar *srcChars,
2301 const UChar *srcChars,
3290 const UChar *srcChars,
3303 const UChar *srcChars,
3318 const UChar *srcChars,
3358 const UChar *srcChars,
3718 UnicodeString::compare(const UChar *srcChars, in compare() argument
3720 { return doCompare(0, length(), srcChars, 0, srcLength); } in compare()
3733 const UChar *srcChars) const in compare() argument
3734 { return doCompare(start, _length, srcChars, 0, _length); } in compare()
3739 const UChar *srcChars, in compare() argument
3742 { return doCompare(start, _length, srcChars, srcStart, srcLength); } in compare()
3779 UnicodeString::compareCodePointOrder(const UChar *srcChars, in compareCodePointOrder() argument
3781 { return doCompareCodePointOrder(0, length(), srcChars, 0, srcLength); } in compareCodePointOrder()
3794 const UChar *srcChars) const in compareCodePointOrder() argument
3795 { return doCompareCodePointOrder(start, _length, srcChars, 0, _length); } in compareCodePointOrder()
3800 const UChar *srcChars, in compareCodePointOrder() argument
3803 { return doCompareCodePointOrder(start, _length, srcChars, srcStart, srcLength); } in compareCodePointOrder()
3844 UnicodeString::caseCompare(const UChar *srcChars, in caseCompare() argument
3847 return doCaseCompare(0, length(), srcChars, 0, srcLength, options); in caseCompare()
3863 const UChar *srcChars, in caseCompare() argument
3865 return doCaseCompare(start, _length, srcChars, 0, _length, options); in caseCompare()
3871 const UChar *srcChars, in caseCompare() argument
3875 return doCaseCompare(start, _length, srcChars, srcStart, srcLength, options); in caseCompare()
3922 UnicodeString::indexOf(const UChar *srcChars, in indexOf() argument
3926 return indexOf(srcChars, 0, srcLength, start, length() - start); in indexOf()
3930 UnicodeString::indexOf(const UChar *srcChars, in indexOf() argument
3934 { return indexOf(srcChars, 0, srcLength, start, _length); } in indexOf()
3971 UnicodeString::lastIndexOf(const UChar *srcChars, in lastIndexOf() argument
3975 { return lastIndexOf(srcChars, 0, srcLength, start, _length); } in lastIndexOf()
3978 UnicodeString::lastIndexOf(const UChar *srcChars, in lastIndexOf() argument
3982 return lastIndexOf(srcChars, 0, srcLength, start, length() - start); in lastIndexOf()
4065 UnicodeString::startsWith(const UChar *srcChars, int32_t srcLength) const { in startsWith() argument
4067 srcLength = u_strlen(srcChars); in startsWith()
4069 return doCompare(0, srcLength, srcChars, 0, srcLength) == 0; in startsWith()
4073 UnicodeString::startsWith(const UChar *srcChars, int32_t srcStart, int32_t srcLength) const { in startsWith() argument
4075 srcLength = u_strlen(srcChars); in startsWith()
4077 return doCompare(0, srcLength, srcChars, srcStart, srcLength) == 0; in startsWith()
4095 UnicodeString::endsWith(const UChar *srcChars, in endsWith() argument
4098 srcLength = u_strlen(srcChars); in endsWith()
4101 srcChars, 0, srcLength) == 0; in endsWith()
4105 UnicodeString::endsWith(const UChar *srcChars, in endsWith() argument
4109 srcLength = u_strlen(srcChars + srcStart); in endsWith()
4112 srcChars, srcStart, srcLength) == 0; in endsWith()
4135 const UChar *srcChars, in replace() argument
4137 { return doReplace(start, _length, srcChars, 0, srcLength); } in replace()
4142 const UChar *srcChars, in replace() argument
4145 { return doReplace(start, _length, srcChars, srcStart, srcLength); } in replace()
4315 UnicodeString::setTo(const UChar *srcChars, in setTo() argument
4319 return doReplace(0, length(), srcChars, 0, srcLength); in setTo()
4347 UnicodeString::append(const UChar *srcChars, in append() argument
4350 { return doReplace(length(), 0, srcChars, srcStart, srcLength); } in append()
4353 UnicodeString::append(const UChar *srcChars, in append() argument
4355 { return doReplace(length(), 0, srcChars, 0, srcLength); } in append()
4388 const UChar *srcChars, in insert() argument
4391 { return doReplace(start, 0, srcChars, srcStart, srcLength); } in insert()
4395 const UChar *srcChars, in insert() argument
4397 { return doReplace(start, 0, srcChars, 0, srcLength); } in insert()