Lines Matching refs:srcChars
436 inline int8_t compare(ConstChar16Ptr srcChars,
455 const char16_t *srcChars) const;
476 const char16_t *srcChars,
590 inline int8_t compareCodePointOrder(ConstChar16Ptr srcChars,
614 const char16_t *srcChars) const;
639 const char16_t *srcChars,
763 inline int8_t caseCompare(ConstChar16Ptr srcChars,
789 const char16_t *srcChars,
816 const char16_t *srcChars,
881 inline UBool startsWith(ConstChar16Ptr srcChars,
893 inline UBool startsWith(const char16_t *srcChars,
928 inline UBool endsWith(ConstChar16Ptr srcChars,
941 inline UBool endsWith(const char16_t *srcChars,
1018 inline int32_t indexOf(const char16_t *srcChars,
1034 inline int32_t indexOf(ConstChar16Ptr srcChars,
1055 int32_t indexOf(const char16_t *srcChars,
1201 inline int32_t lastIndexOf(const char16_t *srcChars,
1217 inline int32_t lastIndexOf(ConstChar16Ptr srcChars,
1238 int32_t lastIndexOf(const char16_t *srcChars,
2007 inline UnicodeString& setTo(const char16_t *srcChars,
2202 inline UnicodeString& append(const char16_t *srcChars,
2215 inline UnicodeString& append(ConstChar16Ptr srcChars,
2280 const char16_t *srcChars,
2294 ConstChar16Ptr srcChars,
2380 const char16_t *srcChars,
2398 ConstChar16Ptr srcChars,
3520 const char16_t *srcChars,
3533 const char16_t *srcChars,
3548 const char16_t *srcChars,
3588 const char16_t *srcChars,
3593 UnicodeString& doAppend(const char16_t *srcChars, int32_t srcStart, int32_t srcLength);
4010 UnicodeString::compare(ConstChar16Ptr srcChars, in compare() argument
4012 { return doCompare(0, length(), srcChars, 0, srcLength); } in compare()
4025 const char16_t *srcChars) const in compare() argument
4026 { return doCompare(start, _length, srcChars, 0, _length); } in compare()
4031 const char16_t *srcChars, in compare() argument
4034 { return doCompare(start, _length, srcChars, srcStart, srcLength); } in compare()
4071 UnicodeString::compareCodePointOrder(ConstChar16Ptr srcChars, in compareCodePointOrder() argument
4073 { return doCompareCodePointOrder(0, length(), srcChars, 0, srcLength); } in compareCodePointOrder()
4086 const char16_t *srcChars) const in compareCodePointOrder() argument
4087 { return doCompareCodePointOrder(start, _length, srcChars, 0, _length); } in compareCodePointOrder()
4092 const char16_t *srcChars, in compareCodePointOrder() argument
4095 { return doCompareCodePointOrder(start, _length, srcChars, srcStart, srcLength); } in compareCodePointOrder()
4136 UnicodeString::caseCompare(ConstChar16Ptr srcChars, in caseCompare() argument
4139 return doCaseCompare(0, length(), srcChars, 0, srcLength, options); in caseCompare()
4155 const char16_t *srcChars, in caseCompare() argument
4157 return doCaseCompare(start, _length, srcChars, 0, _length, options); in caseCompare()
4163 const char16_t *srcChars, in caseCompare() argument
4167 return doCaseCompare(start, _length, srcChars, srcStart, srcLength, options); in caseCompare()
4214 UnicodeString::indexOf(const char16_t *srcChars, in indexOf() argument
4218 return indexOf(srcChars, 0, srcLength, start, length() - start); in indexOf()
4222 UnicodeString::indexOf(ConstChar16Ptr srcChars, in indexOf() argument
4226 { return indexOf(srcChars, 0, srcLength, start, _length); } in indexOf()
4263 UnicodeString::lastIndexOf(ConstChar16Ptr srcChars, in lastIndexOf() argument
4267 { return lastIndexOf(srcChars, 0, srcLength, start, _length); } in lastIndexOf()
4270 UnicodeString::lastIndexOf(const char16_t *srcChars, in lastIndexOf() argument
4274 return lastIndexOf(srcChars, 0, srcLength, start, length() - start); in lastIndexOf()
4357 UnicodeString::startsWith(ConstChar16Ptr srcChars, int32_t srcLength) const { in startsWith() argument
4359 srcLength = u_strlen(toUCharPtr(srcChars)); in startsWith()
4361 return doCompare(0, srcLength, srcChars, 0, srcLength) == 0; in startsWith()
4365 UnicodeString::startsWith(const char16_t *srcChars, int32_t srcStart, int32_t srcLength) const { in startsWith() argument
4367 srcLength = u_strlen(toUCharPtr(srcChars)); in startsWith()
4369 return doCompare(0, srcLength, srcChars, srcStart, srcLength) == 0; in startsWith()
4387 UnicodeString::endsWith(ConstChar16Ptr srcChars, in endsWith() argument
4390 srcLength = u_strlen(toUCharPtr(srcChars)); in endsWith()
4393 srcChars, 0, srcLength) == 0; in endsWith()
4397 UnicodeString::endsWith(const char16_t *srcChars, in endsWith() argument
4401 srcLength = u_strlen(toUCharPtr(srcChars + srcStart)); in endsWith()
4404 srcChars, srcStart, srcLength) == 0; in endsWith()
4427 ConstChar16Ptr srcChars, in replace() argument
4429 { return doReplace(start, _length, srcChars, 0, srcLength); } in replace()
4434 const char16_t *srcChars, in replace() argument
4437 { return doReplace(start, _length, srcChars, srcStart, srcLength); } in replace()
4619 UnicodeString::setTo(const char16_t *srcChars, in setTo() argument
4623 return doReplace(0, length(), srcChars, 0, srcLength); in setTo()
4651 UnicodeString::append(const char16_t *srcChars, in append() argument
4654 { return doAppend(srcChars, srcStart, srcLength); } in append()
4657 UnicodeString::append(ConstChar16Ptr srcChars, in append() argument
4659 { return doAppend(srcChars, 0, srcLength); } in append()
4692 const char16_t *srcChars, in insert() argument
4695 { return doReplace(start, 0, srcChars, srcStart, srcLength); } in insert()
4699 ConstChar16Ptr srcChars, in insert() argument
4701 { return doReplace(start, 0, srcChars, 0, srcLength); } in insert()